本文整理汇总了C#中System.IO.IsolatedStorage.IsolatedStorageFile.GetLastWriteTime方法的典型用法代码示例。如果您正苦于以下问题:C# IsolatedStorageFile.GetLastWriteTime方法的具体用法?C# IsolatedStorageFile.GetLastWriteTime怎么用?C# IsolatedStorageFile.GetLastWriteTime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.IO.IsolatedStorage.IsolatedStorageFile
的用法示例。
在下文中一共展示了IsolatedStorageFile.GetLastWriteTime方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: getFiles
private Collection<SearchableFile> getFiles(string pattern, IsolatedStorageFile storeFile, Collection<SearchableFile> list)
{
string root = System.IO.Path.GetDirectoryName(pattern);
foreach (string fileName in storeFile.GetFileNames(pattern))
{
string filePath = System.IO.Path.Combine(root, fileName);
string fileText = string.Empty;
using (StreamReader myReader = new StreamReader(new IsolatedStorageFileStream(filePath, FileMode.Open, storeFile)))
{
fileText = myReader.ReadToEnd();
}
list.Add(new SearchableFile(filePath, fileName, root, storeFile.GetLastWriteTime(filePath), fileText));
}
foreach (string dirName in storeFile.GetDirectoryNames(pattern))
{
pattern = System.IO.Path.Combine(root, dirName);
list = getFiles(pattern + "/*", storeFile, list);
}
return list;
}
示例2: GetFileAge
/// <summary>
/// Determines the age of a file based on the last time it was written to
/// </summary>
/// <param name="filepath">The path of the file to test.</param>
/// <param name="storage">A reference to a valid IsolatedStorageFile instance.</param>
/// <returns>A DateTimeOffset indiciating the last valid file write date.</returns>
public static DateTimeOffset GetFileAge(string filepath, IsolatedStorageFile storage)
{
return storage.GetLastWriteTime(filepath);
}