mirror of
				https://github.com/xiaoqidun/setft.git
				synced 2025-10-31 08:49:37 +08:00 
			
		
		
		
	docs(更新文档): 更新文档
This commit is contained in:
		
							
								
								
									
										27
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										27
									
								
								README.md
									
									
									
									
									
								
							| @@ -1,3 +1,30 @@ | ||||
| # setft | ||||
|  | ||||
| Golang SetFileTime,修改文件的访问时间、创建时间、修改时间。 | ||||
|  | ||||
| # 使用说明 | ||||
|  | ||||
| ```go | ||||
| package main | ||||
|  | ||||
| import ( | ||||
| 	"github.com/xiaoqidun/setft" | ||||
| 	"log" | ||||
| 	"time" | ||||
| ) | ||||
|  | ||||
| func main() { | ||||
| 	// 时间字符格式 | ||||
| 	layout := "2006-01-02 15:04:05" | ||||
| 	// 设置访问时间 | ||||
| 	atime, _ := time.ParseInLocation(layout, "2021-01-01 00:00:00", time.Local) | ||||
| 	// 设置创建时间 | ||||
| 	ctime, _ := time.ParseInLocation(layout, "2021-01-01 00:00:00", time.Local) | ||||
| 	// 设置修改时间 | ||||
| 	mtime, _ := time.ParseInLocation(layout, "2021-01-01 00:00:00", time.Local) | ||||
| 	// 修改文件时间 | ||||
| 	if err := setft.SetFileTime("setft_test.go", atime, ctime, mtime); err != nil { | ||||
| 		log.Println(err) | ||||
| 	} | ||||
| } | ||||
| ``` | ||||
		Reference in New Issue
	
	Block a user