Giriş
Bu sınıf için şu satır dahil edilir.
Bu metod bir sürü exception fırlatabiliyor. Açıklaması şöyle.
Alt dizinleriyle beraber tüm dizin yolunu yaratır.Şöyle yaparız.
Şöyle yaparız.
Linq kullanabilmemizi sağlar. Uzantısı belli dosyalar şöyle silinir.
Açıklaması şöyle.
Bu sınıf için şu satır dahil edilir.
using System.IO.Directory;
CreateDirectory metoduBu metod bir sürü exception fırlatabiliyor. Açıklaması şöyle.
IOException
- The directory specified by path is a file.
- The network name is not known.
UnauthorizedAccessException
- The caller does not have the required permission.
ArgumentException
path is a zero-length string, contains only white space, or contains one or more invalid characters. You can query for invalid characters by using the GetInvalidPathChars method. path is prefixed with, or contains, only a colon character (:). ArgumentNullException
- path is null.
PathTooLongException
- The specified path, file name, or both exceed the system-defined maximum length. For example, on Windows-based platforms, paths must be less than 248 characters and file names must be less than 260 characters.
DirectoryNotFoundException
- The specified path is invalid (for example, it is on an unmapped drive).
NotSupportedException
- path contains a colon character (:) that is not part of a drive label ("C:\").
string folderPath = @"...";
DirectoryInfo di = Directory.CreateDirectory(folderPath);
Eğer uzak bir makinede dizin yaratmak istersek şöyle yaparız string path = @"\\16.166.187.121\c$\testingfolder\Features\Temp\";
DirectoryInfo di = Directory.CreateDirectory(path);
Şöyle bir hata alabiliriz.Delete metoduLogon failure: unknown user name or bad password.
Şöyle yaparız.
Directory.Delete("someFolder",true);
EnumerateFiles metodu - stringLinq kullanabilmemizi sağlar. Uzantısı belli dosyalar şöyle silinir.
var reg = new Regex(@"(\.jpg|\.jpeg|\.png|\.gif|\.bmp)$");
Directory.EnumerateFiles(@"C:\temp")
.Where(file => reg.Match(file).Success).ToList()
.ForEach(File.Delete)
EnumerateFiles metodu - string + string + SeachOptionAçıklaması şöyle.
Şöyle yaparız.Returns an enumerable collection of file names that match a search pattern in a specified path, and optionally searches subdirectories.
if(Directory.EnumerateFiles(folder, "*.txt",SearchOption.TopDirectoryOnly).Any())
{...}
Exists metoduŞöyle yaparız.
string voicelogPath = Application.StartupPath + "\\Voicelog\\";
if (!Directory.Exists(voicelogPath + folderName))
{
Directory.CreateDirectory(voicelogPath + folderName);
}
GetAccesControl metodu
DirectorySecurity nesnesi döner. Şöyle yaparız.
Şöyle yaparız.DirectorySecurity nesnesi döner. Şöyle yaparız.
DirectorySecurity secInfo = Directory.GetAccessControl(path);
GetDirectories metodustring[] directories = Directory.GetDirectories(@"d:\",
"*",
SearchOption.AllDirectories);
Eğer dizinlerden birisine erişim izni yoksa UnauthorizedAccessException alırız. Linq metodlarını da kullanabiliriz.string dir = Directory.GetDirectories(@"D:\","App_data").FirstOrDefault();
GetDirectories düzenli ifadeyi desteklemez. Ancak basitçe şöyle yapabiliriz.List<string> destDir1 = Directory.GetDirectories(folderPath, "*",
SearchOption.AllDirectories)
.Where(f => Regex.IsMatch(f, @"[\\/]\d+$")).ToList();
GetFiles metoduGetFiles mutlak (absolute) veya göreceli (relative) yol ile çalışabilir. Bir string dizisi döner.
Şöyle yaparız. Alt dizinlere bakmaz.
string dirPath =...;
string[] files = Directory.GetFiles (dirPath
);
Linq ile kullanmak için şöyle yaparız.string[] files = Directory.GetFiles(@"...")
.Select(x=> ...).ToArray();
GetFiles metodu - SearchPatternŞöyle yaparız.
string[] files = Directory.GetFiles (dirPath
, "*.txt");
GetFiles metodu - SearchPattern + SearchOptions1. SearchOption.TopDirectoryOnly
Şöyle yaparız. Belirtilen dizinindeki png uzantılı dosyalar bulunur. Alt dizinlere bakmaz
string[] files = Directory.GetFiles("...","*.png",SearchOption.TopDirectoryOnly);
2. SearchOption.AllDirectoriesAlt dizinlere filtre kullanarak bakmak için şöyle yaparız.
string[] files = Directory.GetFiles("...", "*.txt", SearchOption.AllDirectories);
Alt dizinlere filtre kullanarak erişip, linq ile kullanabilmek için şöyle yaparız.DateTime endTime = DateTime.Now;
DateTime starttime = endTime.AddDays(-2);
var filesBetweenDates = Directory.GetFiles("...", "*.*", SearchOption.AllDirectories)
.Where(f => new FileInfo(f).CreationTime > starttime &&
new FileInfo(f).CreationTime < endTime);
Şöyle yaparız
string[] drives = Directory.GetLogicalDrives();
GetParent metoduŞöyle yaparız.
System.IO.Directory.GetParent(@"D:/Sports/All/Indoor/TableTennis/Women/9.jpg").Name
SetAccessControl metoduŞöyle yaparız.
string path = ...;
DirectorySecurity directorySecurity = ...;
Directory.SetAccessControl(path, directorySecurity);
Hiç yorum yok:
Yorum Gönder