• 大小: 1.23MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-09-21
  • 语言: C#
  • 标签: undeleted  file  recovery  

资源简介

花了很久时间搞到的代码 需要的拿去吧 分数有些贵 多担待 可以恢复 误删除的文件 功能没有es强大 但是源码 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个文件信息

评论

共有 条评论