在wp8中设置本地存储文件的创建日期或属性

时间:2014-02-26 06:00:47

标签: c# windows-phone-8 storagefile

如何设置创建日期,或者如果在WP8中使用Windows.Storage的文件中无法使用自定义文件属性?如果没有办法使用Windows Storage,有没有其他方法来存储文件的元数据?我不打算使用独立存储设置或数据库或任何东西。

1 个答案:

答案 0 :(得分:0)

你想获得文件创建时间吗?如果是这样,您可以使用以下代码获取文件创建日期:

using (IsolatedStorageFile isof = IsolatedStorageFile.GetUserStoreForApplication())
{
    using (var fileStream = isof.OpenFile("myfile.txt", FileMode.Create, FileAccess.ReadWrite, FileShare.ReadWrite))
    {
        byte[] htmlContentBytes = Encoding.UTF8.GetBytes("test string");
        fileStream.Write(htmlContentBytes, 0, htmlContentBytes.Length);
    }

    var creationTime = isof.GetCreationTime("myfile.txt");// get creation time/date
    var lastAccessTime = isof.GetLastAccessTime("myfile.txt"); // get last access time/date
    var lastWriteTime = isof.GetLastWriteTime("myfile.txt"); // get last Write time/date
}