Detect是字符串文件名或目录名

时间:2012-02-12 12:40:28

标签: c# windows-phone-7

我需要检测我的输入字符串是文件名还是目录名? 在我的Windows应用程序中,我使用此代码:

    private bool IsFolder(string path)
    {
        return ((File.GetAttributes(path) & FileAttributes.Directory) == FileAttributes.Directory);
    }

但是如何在Windows Phone 7中执行此操作? (7.1如果重要的话) 除了像这样检查之外还有其他方式

if(storage.DirectoryExists(path)) return false; //and so on...
else ...

谢谢。

1 个答案:

答案 0 :(得分:0)

没有什么特别的可以做到这一点 只测试它是否是文件 如果没有,请测试它是否是目录 如果没有,那就不是。