You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespace WeChatWASM;
public class WXStatInfo
{
//
// 摘要:
// 文件的类型和存取的权限,对应 POSIX stat.st_mode
public int mode;
//
// 摘要:
// 文件大小,单位:B,对应 POSIX stat.st_size
public int size;
//
// 摘要:
// 文件最近一次被存取或被执行的时间,UNIX 时间戳,对应 POSIX stat.st_atime
public long lastAccessedTime;
//
// 摘要:
// 文件最后一次被修改的时间,UNIX 时间戳,对应 POSIX stat.st_mtime
public long lastModifiedTime;
}
Activity
CimXin commentedon Jun 18, 2025
根据官方文档中Stats是有如下两个方法。
在C#中也没有看到
0oQiaoo0 commentedon Jun 20, 2025
我们这边跟进修复一下 预计下个预发布版本修复