-
-
-
-
-
- public bool judgeExpensionName(string folderPath)
- {
- bool isTp = false;
-
- if (Directory.Exists(folderPath))
- {
- foreach (string itemFilePath in Directory.GetFiles(folderPath))
- {
- FileInfo fi = new FileInfo(itemFilePath);
-
-
-
-
-
- if (fi.Extension.Equals(".jpg") || fi.Extension.Equals(".JPG") || fi.Extension.Equals(".jpge") || fi.Extension.Equals(".JPEG") || fi.Extension.Equals(".gif") || fi.Extension.Equals(".GIF"))
- {
- isTp = true;
- break;
- }
-
- else
- isTp = false;
- }
- }
-
- return isTp;
- }
posted @
2010-08-16 22:13
你妹的sb
阅读(
1327)
评论()
编辑
收藏
举报