获取指定目录文件的信息

[复制链接]
查看1685 | 回复1 | 2023-4-21 05:42:39 | 显示全部楼层 |阅读模式
function 类_文件_获取文件所有信息(filePath)
  local fileProperties = {}
  local fileInfo = io.popen('stat -c "%n %y %z %s" "' .. filePath .. '"'):read("*all")
  print(fileInfo)

  fileProperties["path"] = filePath
  fileProperties["create_time"] = string.sub(fileInfo, 6, 24)
  fileProperties["modify_time"] = string.sub(fileInfo, 30, 48)
  fileProperties["size"] = string.sub(fileInfo, 54, -1)
  return fileProperties
end

有问题?
找老发呀!!!!
回复

使用道具 举报

vddfuacf | 2023-10-1 04:14:34 | 显示全部楼层
感谢楼主分享
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

7

主题

22

帖子

100

积分

注册会员

Rank: 2

积分
100
QQ