Welcome![Sign In][Sign Up]
Location:
Search - UDF file system

Search list

[File Operateudf

Description: the udf of iso file system,it is chinese,and it will help some one!
Platform: | Size: 1710308 | Author: jackch | Hits:

[Windows KernelUDF文件系统 源码

Description: Abstract:Universal Disk Format is a file system specification defined by Optical Storage Technology Association, One objective of UDF is to replace the ISO9660 file system. Introduce the characteristics of UDF file system, describe UDF file system’s volume structure, partition structure, space allocation, and directory and file structure, extended attributes. Point out some terminologies of UDF. Key words: Universal Disk Format, File System, Volume Structure, Partition Structure
Platform: | Size: 237970 | Author: 931233590@qq.com | Hits:

[SCSI-ASPIudftools

Description: udf文件系统工具软件,支持大文件的读写-udf file system tools to support reading and writing large files
Platform: | Size: 611328 | Author: 小武 | Hits:

[Otherudf260

Description: 定义了一种文件结构框架,是UDF文件系统的基础-Defines a framework file structure is the basis of UDF file system
Platform: | Size: 665600 | Author: 小武 | Hits:

[OS Developudfs

Description: windows 2000中的UDF文件系统的驱动程序.只有读的功能,不支持未关闭的盘片.只支持UDF2.0以下版本,不支持VAT格式的UDF.-windows 2000 the UDF file system driver. only time functions, does not support the disc is not closed. UDF2.0 only supports the following versions do not support the VAT format UDF.
Platform: | Size: 270336 | Author: lak47 | Hits:

[File Operateudf

Description: the udf of iso file system,it is chinese,and it will help some one!
Platform: | Size: 1710080 | Author: jackch | Hits:

[Linux-Unixudf-0.9.8.tar

Description: 这是Linux系统下的对UDF文件系统新增的功能,这是我从别处下载到的,希望能和大家共享,-This is the Linux system on the UDF file system to add, that I downloaded from elsewhere, and would like to share with you, huh, huh Oh
Platform: | Size: 237568 | Author: zhang | Hits:

[Driver Developudf260

Description: This book is about UDF filesystem format and how to write UDF driver for your operating system
Platform: | Size: 672768 | Author: Mostafa | Hits:

[Driver Developckfilesystem-ir050

Description: 吐血奉献1:支持ISO9660和UDF文件系统的源码,国外下载的-This is ckFileSystem, a software library providing file system functionality. Supported file systems are ISO9660 (with Joliet and ElTorito extensions) and UDF (version 1.02).
Platform: | Size: 125952 | Author: fjh | Hits:

[Linux-Unixphy_lcn

Description: Select packet support in the block device section and UDF support in the file system section.
Platform: | Size: 28672 | Author: lmhervue | Hits:

[OS programFile-System-Behavior-Overview

Description: File System Behavior in the Microsoft Windows Environment This document covers the native windows files systems: NTFS FAT EXFAT CDFS UDF
Platform: | Size: 1162240 | Author: Alex | Hits:

[Windows KernelDiscUtils读写iso以及虚拟磁盘文件类库源码

Description: 源码包含一个读取ISO文件和虚拟磁盘文件(VHD, VDI, XVA, VMDK, etc)的类和完整的调用示例。 对于ISO、UDF、FAT和NTFS的支持已经非常完善。支持VHD, XVA, VMDK 和VDI格式的读写与注册。 类库中还包含一个简单的iSCSI启动器,可以通过iSCSI和一个NFS客户端实现对磁盘的访问。 这里有几段简单的示例代码,可以看出来使用还是非常方便的: 新建一个ISO文件: CDBuilder builder = new CDBuilder(); builder.UseJoliet = true; builder.VolumeIdentifier = "A_SAMPLE_DISK"; builder.AddFile(@"Folder\Hello.txt", Encoding.ASCII.GetBytes("Hello World!")); builder.Build(@"C:\temp\sample.iso"); 你可以通过流或者文件的方式来进行ISO的操作。 从ISO文件中提取一个文件: using (FileStream isoStream = File.Open(@"C:\temp\sample.iso")) { CDReader cd = new CDReader(isoStream, true); Stream fileStream = cd.OpenFile(@"Folder\Hello.txt", FileMode.Open); // Use fileStream... } 同样,你也可以浏览ISO内部包含的目录或者作为启动盘。 新建一个虚拟磁盘: long diskSize = 30 * 1024 * 1024; //30MB using (Stream vhdStream = File.Create(@"C:\TEMP\mydisk.vhd")) { Disk disk = Disk.InitializeDynamic(vhdStream, diskSize); BiosPartitionTable.Initialize(disk, WellKnownPartitionType.WindowsFat); using (FatFileSystem fs = FatFileSystem.FormatPartition(disk, 0, null)) { fs.CreateDirectory(@"TestDir\CHILD"); // do other things with the file system... } } 新建一个虚拟软盘: using (FileStream fs = File.Create(@"myfloppy.vfd")) { using (FatFileSystem floppy = FatFileSystem.FormatFloppy(fs, FloppyDiskType.HighDensity, "MY FLOPPY ")) { using (Stream s = floppy.OpenFile("foo.txt", FileMode.Create)) { // Use stream... } } } 也可以作为启动软盘使用。
Platform: | Size: 438282 | Author: twklzw | Hits:

CodeBus www.codebus.net