Windows系统如何修改文件日期属性

  • win+r键,输入powershell,在弹出的命令窗口输入命令,案例如下:
    • file_address = E:\_OrderingProject\\PIC1101\ldv1s_0830_ec_result.tif
    • time_change = "07/12/2022 20:42:23"

  1. 修改文件创建时间:creationtime

    1. $(Get-Item file_address ).creationtime=$(Get-Date time_change)

  2. 修改文件最后访问时间:lastaccesstime

    1. $(Get-Item file_address ).lastaccesstime=$(Get-Date time_change)

  3. 修改文件最后修改时间:lastwritetime

    1. $(Get-Item file_address ).lastwritetime=$(Get-Date time_change)


如果该文章帮助到了您,希望可以点赞支持一下作者。(●'◡'●)ノ

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
以下是C++实现文件按照修改日期排序的代码: ```c++ #include <iostream> #include <fstream> #include <string> #include <vector> #include <algorithm> #include <ctime> #include <sys/stat.h> using namespace std; // 定义一个结构体,保存文件名和修改时间 struct FileInfo { string name; time_t modifyTime; }; // 比较函数,用于排序 bool cmp(const FileInfo& a, const FileInfo& b) { return a.modifyTime > b.modifyTime; } int main() { // 定义文件夹路径 string folderPath = "/path/to/folder"; // 打开文件夹 DIR* dir = opendir(folderPath.c_str()); if (dir == NULL) { cout << "文件夹不存在!" << endl; return 0; } // 读取文件夹中的文件名和修改时间 dirent* dp; vector<FileInfo> fileInfos; while ((dp = readdir(dir)) != NULL) { if (dp->d_name[0] == '.') { // 忽略隐藏文件 continue; } string filePath = folderPath + "/" + dp->d_name; struct stat s; if (stat(filePath.c_str(), &s) == 0) { time_t modifyTime = s.st_mtime; fileInfos.push_back({dp->d_name, modifyTime}); } } closedir(dir); // 按照修改时间排序 sort(fileInfos.begin(), fileInfos.end(), cmp); // 输出排序结果 for (auto fileInfo : fileInfos) { cout << fileInfo.name << " " << ctime(&fileInfo.modifyTime); } return 0; } ``` 需要注意的是,该代码使用了Unix系统中的stat函数获取文件修改时间,因此只能在Unix/Linux系统下运行。如果是在Windows系统下运行,需要使用Windows API中的GetFileAttributes和FindFirstFile等函数获取文件属性信息。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

NI'CE'XIAN

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值