91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 1.23MB
    文件類型: .rar
    金幣: 2
    下載: 1 次
    發(fā)布日期: 2023-09-21
  • 語言: C#
  • 標(biāo)簽: undeleted??file??recovery??

資源簡介

花了很久時間搞到的代碼 需要的拿去吧 分?jǐn)?shù)有些貴 多擔(dān)待 可以恢復(fù) 誤刪除的文件 功能沒有es強(qiáng)大 但是源碼 c# vs2010 .net 4.0

資源截圖

代碼片段和文件信息

//?Copyright?(C)?2013??Joey?Scarr?Josh?Oosterman?Lukas?Korsika
//
//?This?program?is?free?software:?you?can?redistribute?it?and/or?modify
//?it?under?the?terms?of?the?GNU?General?Public?License?as?published?by
//?the?Free?Software?Foundation?either?version?3?of?the?License?or
//?(at?your?option)?any?later?version.
//
//?This?program?is?distributed?in?the?hope?that?it?will?be?useful
//?but?WITHOUT?ANY?WARRANTY;?without?even?the?implied?warranty?of
//?MERCHANTABILITY?or?FITNESS?FOR?A?PARTICULAR?PURPOSE.??See?the
//?GNU?General?Public?License?for?more?details.
//
//?You?should?have?received?a?copy?of?the?GNU?General?Public?License
//?along?with?this?program.??If?not?see?.

using?System;
using?System.Collections.Generic;
using?System.Linq;
using?System.Text;

namespace?KFS.DataStream?{
///?
///?A?data?stream?wrapper?for?an?array?of?bytes.
///?

public?class?ArrayBackedStream?:?IDataStream?{
private?uint?_offset;
private?uint?_length;
private?byte[]?_data;

public?ArrayBackedStream(byte[]?data?uint?offset?uint?length)?{
_data?=?data;
_offset?=?offset;
_length?=?length;
}

public?byte[]?GetBytes(ulong?offset?ulong?length)?{
byte[]?result?=?new?byte[length];
Array.Copy(_data?(int)(_offset?+?offset)?result?0?(int)length);
return?result;
}

public?ulong?DeviceOffset?{
get?{?return?_offset;?}
}

public?ulong?StreamLength?{
get?{?return?_length;?}
}

public?string?StreamName?{
get?{?return?“Array-backed?stream“;?}
}

public?IDataStream?ParentStream?{
get?{?return?null;?}
}

public?void?Open()?{?}

public?void?Close()?{
//?Remove?reference?to?the?array.
_data?=?null;
}
}
}

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----

?????文件?????128000??2015-05-05?12:39??Code\FileSystems\bin\Debug\FileSystems.dll

?????文件?????304640??2015-05-05?12:39??Code\FileSystems\bin\Debug\FileSystems.pdb

?????文件?????445440??2014-10-10?09:25??Code\FileSystems\bin\Debug\Ionic.Zip.dll

?????文件???????1729??2014-10-10?09:25??Code\FileSystems\DataStream\ArrayBackedStream.cs

?????文件???????2012??2014-10-10?09:25??Code\FileSystems\DataStream\FileDataStream.cs

?????文件???????2465??2014-10-10?09:25??Code\FileSystems\DataStream\ForensicsAppStream.cs

?????文件???????1118??2014-10-10?09:25??Code\FileSystems\DataStream\IDataStream.cs

?????文件???????1238??2014-10-10?09:25??Code\FileSystems\DataStream\SectorStream.cs

?????文件???????1787??2014-10-10?09:25??Code\FileSystems\DataStream\SubStream.cs

?????文件???????7814??2014-10-10?09:25??Code\FileSystems\DataStream\Util.cs

?????文件???????3491??2014-10-10?09:25??Code\FileSystems\Disks\Attributes.cs

?????文件???????2489??2014-10-10?09:25??Code\FileSystems\Disks\Disk.cs

?????文件???????4627??2014-10-10?09:25??Code\FileSystems\Disks\Image.cs

?????文件???????8948??2014-10-10?09:25??Code\FileSystems\Disks\LogicalDiskAttributes.cs

?????文件???????4598??2014-10-10?09:25??Code\FileSystems\Disks\MasterBootRecord.cs

?????文件???????1218??2014-10-10?09:25??Code\FileSystems\Disks\MasterBootRecordAttributes.cs

?????文件??????10508??2014-10-10?09:25??Code\FileSystems\Disks\PhysicalDiskAttributes.cs

?????文件???????3185??2014-10-10?09:25??Code\FileSystems\Disks\PhysicalDiskPartition.cs

?????文件???????7774??2014-10-10?09:25??Code\FileSystems\Disks\PhysicalDiskPartitionAttributes.cs

?????文件???????2113??2014-10-10?09:25??Code\FileSystems\Disks\PhysicalDiskSection.cs

?????文件???????1923??2014-10-10?09:25??Code\FileSystems\Disks\UnallocatedDiskArea.cs

?????文件???????1095??2014-10-10?09:25??Code\FileSystems\Disks\UnallocatedDiskAreaAttributes.cs

?????文件???????2597??2014-10-10?09:25??Code\FileSystems\FileSystem\FAT\FileAllocationTable.cs

?????文件???????2797??2014-10-10?09:25??Code\FileSystems\FileSystem\FAT\FileAttributesFAT.cs

?????文件???????4827??2014-10-10?09:25??Code\FileSystems\FileSystem\FAT\FileFAT.cs

?????文件??????10892??2014-10-10?09:25??Code\FileSystems\FileSystem\FAT\FileSystemFAT.cs

?????文件??????14265??2014-10-10?09:25??Code\FileSystems\FileSystem\FAT\FolderFAT.cs

?????文件???????1016??2014-10-10?09:25??Code\FileSystems\FileSystem\FAT\IFATNode.cs

?????文件???????2077??2014-10-10?09:25??Code\FileSystems\FileSystem\File.cs

?????文件???????2159??2014-10-10?09:25??Code\FileSystems\FileSystem\FileFromHostSystem.cs

............此處省略172個文件信息

評論

共有 條評論