コード例 #1
0
        public PhysicalStorageDirectoryInfo(IFileInfo info)
        {
            info.NotNull(nameof(info));

            Exists       = info.Exists;
            Length       = info.Length;
            PhysicalPath = info.PhysicalPath;
            Name         = info.Name;
            LastModified = info.LastModified;
            IsDirectory  = info.IsDirectory;
        }