123456789101112131415161718192021222324252627 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using DiskAccessLibrary.FileSystems.NTFS;
- using Utilities;
- namespace DiskAccessLibrary.FileSystems
- {
- public class FileSystemHelper
- {
- public static FileSystem ReadFileSystem(Volume volume)
- {
- NTFSFileSystem ntfs = new NTFSFileSystem(volume);
- if (ntfs.IsValidAndSupported)
- {
- return ntfs;
- }
- return null;
- }
- }
- }
|