FileSender├── Client
│ ├── Client.csproj
│ ├── Program.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── Client.exe
│ │ │ ├── Client.pdb
│ │ │ ├── Client.vshost.exe
│ │ │ ├── Client.vshost.exe.manifest
│ │ │ ├── FileTransmitor.dll
│ │ │ ├── FileTransmitor.pdb
│ │ │ └── exec.log
│ │ └── Debug.rar
│ └── obj
│ └── Debug
│ ├── Client.csproj.FileListAbsolute.txt
│ ├── Client.exe
│ ├── Client.pdb
│ ├── Refactor
│ ├── ResolveAssemblyReference.cache
│ └── TempPE
├── FileSender
│ ├── FileTransmitor.cs
│ ├── FileTransmitor.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── bin
│ │ └── Debug
│ │ ├── FileTransmitor.dll
│ │ └── FileTransmitor.pdb
│ └── obj
│ └── Debug
│ ├── FileSender.csproj.FileListAbsolute.txt
│ ├── FileSender.exe
│ ├── FileSender.pdb
│ ├── FileTransmitor.csproj.FileListAbsolute.txt
│ ├── FileTransmitor.dll
│ ├── FileTransmitor.pdb
│ ├── Refactor
│ │ └── FileTransmitor.dll
│ └── TempPE
├── FileSender.sln
├── FileSender.suo
└── Server
├── Program.cs
├── Properties
│ └── AssemblyInfo.cs
├── Server.csproj
├── bin
│ └── Debug
│ ├── FileTransmitor.dll
│ ├── FileTransmitor.pdb
│ ├── Server.exe
│ ├── Server.pdb
│ ├── Server.vshost.exe
│ └── Server.vshost.exe.manifest
└── obj
└── Debug
├── Refactor
├── Server.csproj.FileListAbsolute.txt
├── Server.exe
├── Server.pdb
└── TempPE
24 directories, 41 files
评论