├── .gitattributes ├── AvCoverDownloader ├── .vs │ └── AvCoverDownloader │ │ └── v16 │ │ └── .suo ├── AvCoverDownloader.sln └── AvCoverDownloader │ ├── App.config │ ├── Av.cs │ ├── AvCoverDownloaderJavbus.csproj │ ├── Collector.cs │ ├── Download.cs │ ├── ExeLog.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── IniFiles.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── bin │ └── Debug │ │ ├── AvCoverDownloaderJavbus.exe │ │ ├── AvCoverDownloaderJavbus.exe.config │ │ ├── AvCoverDownloaderJavbus.pdb │ │ └── address.ini │ └── obj │ └── Debug │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── AvCoverDownloader.Form1.resources │ ├── AvCoverDownloader.Properties.Resources.resources │ ├── AvCoverDownloader.csproj.CoreCompileInputs.cache │ ├── AvCoverDownloader.csproj.FileListAbsolute.txt │ ├── AvCoverDownloader.csproj.GenerateResource.cache │ ├── AvCoverDownloader.csprojAssemblyReference.cache │ ├── AvCoverDownloader.csprojResolveAssemblyReference.cache │ ├── AvCoverDownloaderJavbus.csproj.CoreCompileInputs.cache │ ├── AvCoverDownloaderJavbus.csproj.FileListAbsolute.txt │ ├── AvCoverDownloaderJavbus.csproj.GenerateResource.cache │ ├── AvCoverDownloaderJavbus.csprojAssemblyReference.cache │ ├── AvCoverDownloaderJavbus.exe │ ├── AvCoverDownloaderJavbus.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ └── address.ini ├── AvCoverDownloader2 ├── .vs │ └── AvCoverDownloader │ │ └── v16 │ │ └── .suo ├── AvCoverDownloader.sln └── AvCoverDownloader │ ├── App.config │ ├── Av.cs │ ├── AvCoverDownloader.csproj │ ├── Collector.cs │ ├── Download.cs │ ├── ExeLog.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── obj │ └── Debug │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── AvCoverDownloader.Form1.resources │ ├── AvCoverDownloader.Properties.Resources.resources │ ├── AvCoverDownloader.csproj.CoreCompileInputs.cache │ ├── AvCoverDownloader.csproj.FileListAbsolute.txt │ ├── AvCoverDownloader.csproj.GenerateResource.cache │ ├── AvCoverDownloader.csprojAssemblyReference.cache │ ├── AvCoverDownloader.csprojResolveAssemblyReference.cache │ ├── AvCoverDownloader.exe │ ├── AvCoverDownloader.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── AvCoverDownloader_f2cppv ├── .vs │ └── AvCoverDownloader │ │ └── v16 │ │ └── .suo ├── AvCoverDownloader.sln └── AvCoverDownloader │ ├── App.config │ ├── Av.cs │ ├── AvCoverDownloader.csproj │ ├── Collector.cs │ ├── Download.cs │ ├── ExeLog.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── obj │ └── Debug │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── AvCoverDownloader.Form1.resources │ ├── AvCoverDownloader.Properties.Resources.resources │ ├── AvCoverDownloader.csproj.CoreCompileInputs.cache │ ├── AvCoverDownloader.csproj.FileListAbsolute.txt │ ├── AvCoverDownloader.csproj.GenerateResource.cache │ ├── AvCoverDownloader.csprojAssemblyReference.cache │ ├── AvCoverDownloader.csprojResolveAssemblyReference.cache │ ├── AvCoverDownloader.exe │ ├── AvCoverDownloader.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── AvMatchCheck ├── .vs │ └── AvMatchCheck │ │ └── v16 │ │ └── .suo ├── AvMatchCheck.sln └── AvMatchCheck │ ├── App.config │ ├── Av.cs │ ├── AvMatchCheck.csproj │ ├── Collector.cs │ ├── Download.cs │ ├── ExeLog.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── IniFiles.cs │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── bin │ └── Debug │ │ ├── AvMatchCheck.exe │ │ ├── AvMatchCheck.exe.config │ │ ├── AvMatchCheck.pdb │ │ └── address.ini │ └── obj │ └── Debug │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── AvCoverDownloader.Form1.resources │ ├── AvCoverDownloader.csproj.CoreCompileInputs.cache │ ├── AvCoverDownloader.csproj.FileListAbsolute.txt │ ├── AvCoverDownloader.csproj.GenerateResource.cache │ ├── AvCoverDownloader.csprojAssemblyReference.cache │ ├── AvCoverDownloader.csprojResolveAssemblyReference.cache │ ├── AvMatchCheck.Properties.Resources.resources │ ├── AvMatchCheck.csproj.CoreCompileInputs.cache │ ├── AvMatchCheck.csproj.FileListAbsolute.txt │ ├── AvMatchCheck.csproj.GenerateResource.cache │ ├── AvMatchCheck.csprojAssemblyReference.cache │ ├── AvMatchCheck.csprojResolveAssemblyReference.cache │ ├── AvMatchCheck.exe │ ├── AvMatchCheck.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TempPE │ └── Properties.Resources.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── AvMosaicSpot ├── .vs │ └── AvMosaicSpot │ │ └── v16 │ │ └── .suo ├── AvMosaicSpot.sln └── AvMosaicSpot │ ├── App.config │ ├── Av.cs │ ├── AvMosaicSpot.csproj │ ├── Collector.cs │ ├── Download.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ └── obj │ └── Debug │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ ├── AvCoverDownloader.Form1.resources │ ├── AvCoverDownloader.Properties.Resources.resources │ ├── AvCoverDownloader.csproj.CoreCompileInputs.cache │ ├── AvCoverDownloader.csproj.FileListAbsolute.txt │ ├── AvCoverDownloader.csproj.GenerateResource.cache │ ├── AvCoverDownloader.csprojAssemblyReference.cache │ ├── AvCoverDownloader.csprojResolveAssemblyReference.cache │ ├── AvCoverDownloader.exe │ ├── AvCoverDownloader.pdb │ ├── AvMosaicSpot.Properties.Resources.resources │ ├── AvMosaicSpot.csproj.CoreCompileInputs.cache │ ├── AvMosaicSpot.csproj.FileListAbsolute.txt │ ├── AvMosaicSpot.csproj.GenerateResource.cache │ ├── AvMosaicSpot.csprojAssemblyReference.cache │ ├── AvMosaicSpot.csprojResolveAssemblyReference.cache │ ├── AvMosaicSpot.exe │ ├── AvMosaicSpot.pdb │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TempPE │ └── Properties.Resources.Designer.cs.dll │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs ├── NfoDownload ├── .vs │ └── NfoDownloader │ │ └── v16 │ │ └── .suo ├── AvCoverDownloader │ ├── App.config │ ├── Av.cs │ ├── Collector.cs │ ├── Download.cs │ ├── ExeLog.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── IniFiles.cs │ ├── NfoDownloader.csproj │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── bin │ │ └── Debug │ │ │ ├── NfoDownloader.exe │ │ │ ├── NfoDownloader.exe.config │ │ │ ├── NfoDownloader.pdb │ │ │ └── address.ini │ ├── obj │ │ └── Debug │ │ │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ │ │ ├── AvCoverDownloader.Form1.resources │ │ │ ├── AvCoverDownloader.Properties.Resources.resources │ │ │ ├── AvCoverDownloader.csproj.CoreCompileInputs.cache │ │ │ ├── AvCoverDownloader.csproj.FileListAbsolute.txt │ │ │ ├── AvCoverDownloader.csproj.GenerateResource.cache │ │ │ ├── AvCoverDownloader.csprojAssemblyReference.cache │ │ │ ├── AvCoverDownloader.exe │ │ │ ├── AvCoverDownloader.pdb │ │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ │ ├── NfoDownloader.Properties.Resources.resources │ │ │ ├── NfoDownloader.csproj.CoreCompileInputs.cache │ │ │ ├── NfoDownloader.csproj.FileListAbsolute.txt │ │ │ ├── NfoDownloader.csproj.GenerateResource.cache │ │ │ ├── NfoDownloader.exe │ │ │ ├── NfoDownloader.pdb │ │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ └── translate.cs ├── NfoDownloader.sln └── packages │ ├── MSTest.TestAdapter.1.3.2 │ ├── .signature.p7s │ ├── MSTest.TestAdapter.1.3.2.nupkg │ └── build │ │ ├── _common │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ │ ├── cs │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── de │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── es │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── fr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── it │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ja │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ko │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── pl │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── pt │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── ru │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── tr │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── zh-Hans │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ └── zh-Hant │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll │ │ │ ├── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll │ │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll │ │ ├── net45 │ │ ├── MSTest.TestAdapter.props │ │ └── MSTest.TestAdapter.targets │ │ ├── netcoreapp1.0 │ │ ├── MSTest.TestAdapter.props │ │ └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ │ └── uap10.0 │ │ ├── MSTest.TestAdapter.props │ │ ├── MSTest.TestAdapter.targets │ │ └── Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll │ └── MSTest.TestFramework.1.3.2 │ ├── .signature.p7s │ ├── MSTest.TestFramework.1.3.2.nupkg │ └── lib │ ├── net45 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── netstandard1.0 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── uap10.0 │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.XML │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.dll │ ├── cs │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── de │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── es │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── fr │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── it │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ja │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ko │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pl │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── pt │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── ru │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── tr │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ ├── zh-Hans │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml │ └── zh-Hant │ ├── Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.xml │ └── Microsoft.VisualStudio.TestPlatform.TestFramework.xml ├── README.md ├── StartDownload ├── .vs │ └── StartDownload │ │ └── v16 │ │ └── .suo ├── AvCoverDownloader │ ├── App.config │ ├── Av.cs │ ├── Collector.cs │ ├── Download.cs │ ├── ExeLog.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── IniFiles.cs │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── StartDownload.csproj │ ├── bin │ │ └── Debug │ │ │ ├── AvCoverDownloader.exe │ │ │ ├── AvCoverDownloader.exe.config │ │ │ ├── AvCoverDownloader.pdb │ │ │ └── address.ini │ └── obj │ │ └── Debug │ │ ├── .NETFramework,Version=v4.6.1.AssemblyAttributes.cs │ │ ├── AvCoverDownloader.Form1.resources │ │ ├── AvCoverDownloader.Properties.Resources.resources │ │ ├── AvCoverDownloader.csproj.CoreCompileInputs.cache │ │ ├── AvCoverDownloader.csproj.FileListAbsolute.txt │ │ ├── AvCoverDownloader.csproj.GenerateResource.cache │ │ ├── AvCoverDownloader.csprojAssemblyReference.cache │ │ ├── AvCoverDownloader.csprojResolveAssemblyReference.cache │ │ ├── AvCoverDownloader.exe │ │ ├── AvCoverDownloader.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Start.csprojAssemblyReference.cache │ │ ├── StartDownload.csproj.CoreCompileInputs.cache │ │ ├── StartDownload.csproj.FileListAbsolute.txt │ │ ├── StartDownload.csproj.GenerateResource.cache │ │ ├── StartDownload.csprojAssemblyReference.cache │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ └── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs └── StartDownload.sln ├── info ├── 1.jpg ├── 111.jpg ├── 2.jpg ├── 222.jpg ├── 3.jpg ├── 3.png ├── 4.jpg └── 5.jpg └── nameTest ├── .vs └── nameTest │ └── v16 │ └── .suo ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── bin └── Debug │ ├── nameTest.exe │ ├── nameTest.exe.config │ └── nameTest.pdb ├── nameTest.csproj ├── nameTest.sln └── obj └── Debug ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs ├── DesignTimeResolveAssemblyReferences.cache ├── DesignTimeResolveAssemblyReferencesInput.cache ├── nameTest.Form1.resources ├── nameTest.Properties.Resources.resources ├── nameTest.csproj.CoreCompileInputs.cache ├── nameTest.csproj.FileListAbsolute.txt ├── nameTest.csproj.GenerateResource.cache ├── nameTest.csprojAssemblyReference.cache ├── nameTest.exe └── nameTest.pdb /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /AvCoverDownloader/.vs/AvCoverDownloader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/.vs/AvCoverDownloader/v16/.suo -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29728.190 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvCoverDownloaderJavbus", "AvCoverDownloader\AvCoverDownloaderJavbus.csproj", "{874EA013-E55B-426F-9B88-AABA13B55037}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B50E03C6-D986-45EF-8987-F3995662A54A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/Av.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | class Av 10 | { 11 | public string Id { get; set; } 12 | public string Path { get; set; } 13 | public string Name { get; set; } 14 | public string Html { get; set; } 15 | 16 | public bool CD1 { get; set; } 17 | 18 | public List stars = new List(); 19 | public List tags = new List(); 20 | 21 | public string date { get; set; } 22 | public string title { get; set; } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/ExeLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace AvCoverDownloader 9 | { 10 | class ExeLog 11 | { 12 | private static StreamWriter sw1; 13 | 14 | /// 15 | /// Txt操作 16 | /// 17 | /// 更新内容 18 | /// 更新txt名 19 | /// 更新文件夹 20 | public static void UrlTxt(string content, string name, string fails) 21 | { 22 | //string y = AppDomain.CurrentDomain.BaseDirectory;//获取当前程序的位置 23 | // string fileStr1 = y.Replace("\\bin\\Debug\\", fails); 24 | // fileStr1 += fails; 25 | // string fileStr1 = "F:\\自有商品获取发布\\"+ fails; 26 | string fileStr1 = fails;//获取txt所在文件 27 | System.IO.Directory.CreateDirectory(fileStr1); 28 | DirectoryInfo dir = new DirectoryInfo(fileStr1); 29 | dir.Create();//自行判断一下是否存在。 30 | string fileStr = fileStr1 + "\\" + name + ".txt"; 31 | if (!File.Exists(fileStr)) 32 | { 33 | FileStream fs1 = new FileStream(fileStr, FileMode.Create, FileAccess.Write);//创建写入文件 34 | StreamWriter sw = new StreamWriter(fs1); 35 | sw.WriteLine(content); 36 | sw.Close(); 37 | fs1.Close(); 38 | } 39 | else 40 | { 41 | sw1 = File.AppendText(fileStr); 42 | sw1.WriteLine(content); 43 | sw1.Close(); 44 | } 45 | } 46 | 47 | public static void WriteLog(string msg) 48 | { 49 | string now = DateTime.Now.ToString("yyyyMMdd"); 50 | //每一天分开保存 51 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 52 | string dirPath = logpath + "log" + "\\" + now + "\\"; 53 | //string txtpath = "F:\\FilePath\\PackageSvr\\"; 54 | WriteLog(msg, "Worklog.txt", dirPath); 55 | //WriteLog(dirPath, "Worklog.txt", txtpath); 56 | } 57 | 58 | public static void WriteLog(string logName, string msg) 59 | { 60 | string now = DateTime.Now.ToString("yyyyMMdd"); 61 | 62 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 63 | string dirPath = logpath + "log" + "\\" + now + "\\"; 64 | 65 | WriteLog(msg, logName, dirPath); 66 | 67 | } 68 | 69 | 70 | public static void WriteLog(string msg, string logName, string dirPath) 71 | { 72 | if (!Directory.Exists(dirPath)) 73 | { 74 | Directory.CreateDirectory(dirPath); 75 | } 76 | string filePath = dirPath + logName; 77 | 78 | using (FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write, FileShare.ReadWrite)) 79 | { 80 | using (StreamWriter sw = new StreamWriter(fs, Encoding.UTF8)) 81 | { 82 | //声明数据流文件写入方法 83 | sw.Write(msg); 84 | } 85 | } 86 | 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("AvCoverDownloader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AvCoverDownloader")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("874ea013-e55b-426f-9b88-aaba13b55037")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本: 4.0.30319.42000 5 | // 6 | // 对此文件的更改可能导致不正确的行为,如果 7 | // 重新生成代码,则所做更改将丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvCoverDownloader.Properties 12 | { 13 | 14 | 15 | /// 16 | /// 强类型资源类,用于查找本地化字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// 返回此类使用的缓存 ResourceManager 实例。 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AvCoverDownloader.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// 覆盖当前线程的 CurrentUICulture 属性 56 | /// 使用此强类型的资源类的资源查找。 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvCoverDownloader.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/bin/Debug/AvCoverDownloaderJavbus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/bin/Debug/AvCoverDownloaderJavbus.exe -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/bin/Debug/AvCoverDownloaderJavbus.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/bin/Debug/AvCoverDownloaderJavbus.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/bin/Debug/AvCoverDownloaderJavbus.pdb -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/bin/Debug/address.ini: -------------------------------------------------------------------------------- 1 | [javbus] 2 | path=https://www.javbus.com,https://www.cdnbus.cloud,https://www.dmmsee.cloud,https://www.dmmbus.cloud,https://www.busjav.cloud,https://www.busdmm.zone,https://www.fanbus.pw,https://www.busfan.one,https://www.fanbus.life,https://www.fanbus.us 3 | proxy=127.0.0.1:1080 -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cb408d89eddd7bd0d9d53064686a3920c03f9b70 2 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cb408d89eddd7bd0d9d53064686a3920c03f9b70 2 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 2 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 3 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloaderJavbus.csproj.GenerateResource.cache 4 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloaderJavbus.csproj.CoreCompileInputs.cache 5 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloaderJavbus.exe.config 6 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloaderJavbus.exe 7 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloaderJavbus.pdb 8 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloaderJavbus.exe 9 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloaderJavbus.pdb 10 | D:\Github\JapanAvStorage\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloaderJavbus.csprojAssemblyReference.cache 11 | -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.exe -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/AvCoverDownloaderJavbus.pdb -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /AvCoverDownloader/AvCoverDownloader/obj/Debug/address.ini: -------------------------------------------------------------------------------- 1 | [javbus] 2 | path=https://123.com,https://321.com 3 | proxy=127.0.0.1:1080 -------------------------------------------------------------------------------- /AvCoverDownloader2/.vs/AvCoverDownloader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/.vs/AvCoverDownloader/v16/.suo -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2026 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvCoverDownloader", "AvCoverDownloader\AvCoverDownloader.csproj", "{874EA013-E55B-426F-9B88-AABA13B55037}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B50E03C6-D986-45EF-8987-F3995662A54A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/Av.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | class Av 10 | { 11 | public string Id { get; set; } 12 | public string Path { get; set; } 13 | public string Name { get; set; } 14 | public string Html { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/Download.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Net; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace AvCoverDownloader 10 | { 11 | class Download 12 | { 13 | public static void HttpDownloadFile(string url, string path, string fileName) 14 | { 15 | if (File.Exists(path + fileName)) 16 | { 17 | return; 18 | } 19 | 20 | try 21 | { 22 | // 设置参数 23 | HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest; 24 | request.Proxy = new WebProxy("127.0.0.1:1080"); 25 | 26 | //发送请求并获取相应回应数据 27 | HttpWebResponse response = request.GetResponse() as HttpWebResponse; 28 | 29 | double dataLengthToRead = response.ContentLength; 30 | //直到request.GetResponse()程序才开始向目标网页发送Post请求 31 | Stream responseStream = response.GetResponseStream(); 32 | 33 | //创建本地文件写入流 34 | Stream stream = new FileStream(path + fileName + ".covertemp", FileMode.Create); 35 | byte[] bArr = new byte[1024 * 512]; 36 | 37 | int size = responseStream.Read(bArr, 0, (int)bArr.Length); 38 | while (size > 0) 39 | { 40 | stream.Write(bArr, 0, size); 41 | size = responseStream.Read(bArr, 0, (int)bArr.Length); 42 | } 43 | stream.Close(); 44 | responseStream.Close(); 45 | File.Move(path + fileName + ".covertemp", path + fileName); 46 | } 47 | catch (Exception ex) 48 | { 49 | Console.Out.Write(ex.StackTrace); 50 | } 51 | 52 | }//method 53 | 54 | public static string GetHtml(string url, Encoding ed) 55 | { 56 | string Html = string.Empty;//初始化新的webRequst 57 | HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(url); 58 | Request.Proxy = new WebProxy("127.0.0.1:1080"); 59 | Request.KeepAlive = true; 60 | Request.ProtocolVersion = HttpVersion.Version11; 61 | Request.Method = "GET"; 62 | Request.Accept = "*/* "; 63 | Request.UserAgent = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5"; 64 | Request.Referer = url; 65 | 66 | HttpWebResponse htmlResponse = (HttpWebResponse)Request.GetResponse(); 67 | //从Internet资源返回数据流 68 | Stream htmlStream = htmlResponse.GetResponseStream(); 69 | //读取数据流 70 | StreamReader weatherStreamReader = new StreamReader(htmlStream, ed); 71 | //读取数据 72 | 73 | Html = weatherStreamReader.ReadToEnd(); 74 | weatherStreamReader.Close(); 75 | htmlStream.Close(); 76 | htmlResponse.Close(); 77 | //针对不同的网站查看html源文件 78 | return Html; 79 | } 80 | 81 | public static string GetHtml(string url) 82 | { 83 | return GetHtml(url, Encoding.UTF8); 84 | } 85 | } 86 | } 87 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/ExeLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace AvCoverDownloader 9 | { 10 | class ExeLog 11 | { 12 | private static StreamWriter sw1; 13 | 14 | /// 15 | /// Txt操作 16 | /// 17 | /// 更新内容 18 | /// 更新txt名 19 | /// 更新文件夹 20 | public static void UrlTxt(string content, string name, string fails) 21 | { 22 | //string y = AppDomain.CurrentDomain.BaseDirectory;//获取当前程序的位置 23 | // string fileStr1 = y.Replace("\\bin\\Debug\\", fails); 24 | // fileStr1 += fails; 25 | // string fileStr1 = "F:\\自有商品获取发布\\"+ fails; 26 | string fileStr1 = fails;//获取txt所在文件 27 | System.IO.Directory.CreateDirectory(fileStr1); 28 | DirectoryInfo dir = new DirectoryInfo(fileStr1); 29 | dir.Create();//自行判断一下是否存在。 30 | string fileStr = fileStr1 + "\\" + name + ".txt"; 31 | if (!File.Exists(fileStr)) 32 | { 33 | FileStream fs1 = new FileStream(fileStr, FileMode.Create, FileAccess.Write);//创建写入文件 34 | StreamWriter sw = new StreamWriter(fs1); 35 | sw.WriteLine(content); 36 | sw.Close(); 37 | fs1.Close(); 38 | } 39 | else 40 | { 41 | sw1 = File.AppendText(fileStr); 42 | sw1.WriteLine(content); 43 | sw1.Close(); 44 | } 45 | } 46 | 47 | public static void WriteLog(string msg) 48 | { 49 | string now = DateTime.Now.ToString("yyyyMMdd"); 50 | //每一天分开保存 51 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 52 | string dirPath = logpath + "log" + "\\" + now + "\\"; 53 | //string txtpath = "F:\\FilePath\\PackageSvr\\"; 54 | WriteLog(msg, "Worklog.txt", dirPath); 55 | //WriteLog(dirPath, "Worklog.txt", txtpath); 56 | } 57 | 58 | public static void WriteLog(string logName, string msg) 59 | { 60 | string now = DateTime.Now.ToString("yyyyMMdd"); 61 | 62 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 63 | string dirPath = logpath + "log" + "\\" + now + "\\"; 64 | 65 | WriteLog(msg, logName, dirPath); 66 | 67 | } 68 | 69 | 70 | public static void WriteLog(string msg, string logName, string dirPath) 71 | { 72 | if (!Directory.Exists(dirPath)) 73 | { 74 | Directory.CreateDirectory(dirPath); 75 | } 76 | string filePath = dirPath + logName; 77 | 78 | using (FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write, FileShare.ReadWrite)) 79 | { 80 | using (StreamWriter sw = new StreamWriter(fs, Encoding.UTF8)) 81 | { 82 | //声明数据流文件写入方法 83 | sw.Write(msg); 84 | } 85 | } 86 | 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("AvCoverDownloader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AvCoverDownloader")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("874ea013-e55b-426f-9b88-aaba13b55037")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本: 4.0.30319.42000 5 | // 6 | // 对此文件的更改可能导致不正确的行为,如果 7 | // 重新生成代码,则所做更改将丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvCoverDownloader.Properties 12 | { 13 | 14 | 15 | /// 16 | /// 强类型资源类,用于查找本地化字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// 返回此类使用的缓存 ResourceManager 实例。 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AvCoverDownloader.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// 覆盖当前线程的 CurrentUICulture 属性 56 | /// 使用此强类型的资源类的资源查找。 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvCoverDownloader.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b71ee46f82adea3ea98b403c20e34c7ac96159e9 2 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojAssemblyReference.cache 2 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 3 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 4 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 5 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 6 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 7 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 8 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 9 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 10 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 11 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 12 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 13 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 14 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojResolveAssemblyReference.cache 15 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 16 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 17 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 18 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 19 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 20 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 21 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 22 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 23 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 24 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojAssemblyReference.cache 25 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 26 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 27 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 28 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 29 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 30 | F:\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 31 | -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.exe -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/AvCoverDownloader.pdb -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /AvCoverDownloader2/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader2/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/.vs/AvCoverDownloader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/.vs/AvCoverDownloader/v16/.suo -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29728.190 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvCoverDownloader", "AvCoverDownloader\AvCoverDownloader.csproj", "{874EA013-E55B-426F-9B88-AABA13B55037}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B50E03C6-D986-45EF-8987-F3995662A54A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/Av.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | class Av 10 | { 11 | public string Id { get; set; } 12 | public string Path { get; set; } 13 | public string Name { get; set; } 14 | public string Html { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/Download.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Net; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace AvCoverDownloader 10 | { 11 | class Download 12 | { 13 | public static void HttpDownloadFile(string url, string path, string fileName) 14 | { 15 | if (File.Exists(path + fileName)) 16 | { 17 | return; 18 | } 19 | 20 | try 21 | { 22 | // 设置参数 23 | HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest; 24 | request.Proxy = null; 25 | //request.Proxy = new WebProxy("127.0.0.1:1080"); 26 | 27 | //发送请求并获取相应回应数据 28 | HttpWebResponse response = request.GetResponse() as HttpWebResponse; 29 | 30 | double dataLengthToRead = response.ContentLength; 31 | //直到request.GetResponse()程序才开始向目标网页发送Post请求 32 | Stream responseStream = response.GetResponseStream(); 33 | 34 | //创建本地文件写入流 35 | Stream stream = new FileStream(path + fileName + ".covertemp", FileMode.Create); 36 | byte[] bArr = new byte[1024 * 512]; 37 | 38 | int size = responseStream.Read(bArr, 0, (int)bArr.Length); 39 | while (size > 0) 40 | { 41 | stream.Write(bArr, 0, size); 42 | size = responseStream.Read(bArr, 0, (int)bArr.Length); 43 | } 44 | stream.Close(); 45 | responseStream.Close(); 46 | File.Move(path + fileName + ".covertemp", path + fileName); 47 | } 48 | catch (Exception ex) 49 | { 50 | Console.Out.Write(ex.StackTrace); 51 | } 52 | 53 | }//method 54 | 55 | public static string GetHtml(string url, Encoding ed) 56 | { 57 | string Html = string.Empty;//初始化新的webRequst 58 | HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(url); 59 | Request.Proxy = null; 60 | //Request.Proxy = new WebProxy("127.0.0.1:1080"); 61 | Request.KeepAlive = true; 62 | Request.ProtocolVersion = HttpVersion.Version11; 63 | Request.Method = "GET"; 64 | Request.Accept = "*/* "; 65 | Request.UserAgent = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5"; 66 | Request.Referer = url; 67 | 68 | HttpWebResponse htmlResponse = (HttpWebResponse)Request.GetResponse(); 69 | //从Internet资源返回数据流 70 | Stream htmlStream = htmlResponse.GetResponseStream(); 71 | //读取数据流 72 | StreamReader weatherStreamReader = new StreamReader(htmlStream, ed); 73 | //读取数据 74 | 75 | Html = weatherStreamReader.ReadToEnd(); 76 | weatherStreamReader.Close(); 77 | htmlStream.Close(); 78 | htmlResponse.Close(); 79 | //针对不同的网站查看html源文件 80 | return Html; 81 | } 82 | 83 | public static string GetHtml(string url) 84 | { 85 | return GetHtml(url, Encoding.UTF8); 86 | } 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/ExeLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace AvCoverDownloader 9 | { 10 | class ExeLog 11 | { 12 | private static StreamWriter sw1; 13 | 14 | /// 15 | /// Txt操作 16 | /// 17 | /// 更新内容 18 | /// 更新txt名 19 | /// 更新文件夹 20 | public static void UrlTxt(string content, string name, string fails) 21 | { 22 | //string y = AppDomain.CurrentDomain.BaseDirectory;//获取当前程序的位置 23 | // string fileStr1 = y.Replace("\\bin\\Debug\\", fails); 24 | // fileStr1 += fails; 25 | // string fileStr1 = "F:\\自有商品获取发布\\"+ fails; 26 | string fileStr1 = fails;//获取txt所在文件 27 | System.IO.Directory.CreateDirectory(fileStr1); 28 | DirectoryInfo dir = new DirectoryInfo(fileStr1); 29 | dir.Create();//自行判断一下是否存在。 30 | string fileStr = fileStr1 + "\\" + name + ".txt"; 31 | if (!File.Exists(fileStr)) 32 | { 33 | FileStream fs1 = new FileStream(fileStr, FileMode.Create, FileAccess.Write);//创建写入文件 34 | StreamWriter sw = new StreamWriter(fs1); 35 | sw.WriteLine(content); 36 | sw.Close(); 37 | fs1.Close(); 38 | } 39 | else 40 | { 41 | sw1 = File.AppendText(fileStr); 42 | sw1.WriteLine(content); 43 | sw1.Close(); 44 | } 45 | } 46 | 47 | public static void WriteLog(string msg) 48 | { 49 | string now = DateTime.Now.ToString("yyyyMMdd"); 50 | //每一天分开保存 51 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 52 | string dirPath = logpath + "log" + "\\" + now + "\\"; 53 | //string txtpath = "F:\\FilePath\\PackageSvr\\"; 54 | WriteLog(msg, "Worklog.txt", dirPath); 55 | //WriteLog(dirPath, "Worklog.txt", txtpath); 56 | } 57 | 58 | public static void WriteLog(string logName, string msg) 59 | { 60 | string now = DateTime.Now.ToString("yyyyMMdd"); 61 | 62 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 63 | string dirPath = logpath + "log" + "\\" + now + "\\"; 64 | 65 | WriteLog(msg, logName, dirPath); 66 | 67 | } 68 | 69 | 70 | public static void WriteLog(string msg, string logName, string dirPath) 71 | { 72 | if (!Directory.Exists(dirPath)) 73 | { 74 | Directory.CreateDirectory(dirPath); 75 | } 76 | string filePath = dirPath + logName; 77 | 78 | using (FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write, FileShare.ReadWrite)) 79 | { 80 | using (StreamWriter sw = new StreamWriter(fs, Encoding.UTF8)) 81 | { 82 | //声明数据流文件写入方法 83 | sw.Write(msg); 84 | } 85 | } 86 | 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("AvCoverDownloader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AvCoverDownloader")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("874ea013-e55b-426f-9b88-aaba13b55037")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本: 4.0.30319.42000 5 | // 6 | // 对此文件的更改可能导致不正确的行为,如果 7 | // 重新生成代码,则所做更改将丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvCoverDownloader.Properties 12 | { 13 | 14 | 15 | /// 16 | /// 强类型资源类,用于查找本地化字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// 返回此类使用的缓存 ResourceManager 实例。 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AvCoverDownloader.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// 覆盖当前线程的 CurrentUICulture 属性 56 | /// 使用此强类型的资源类的资源查找。 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvCoverDownloader.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b71ee46f82adea3ea98b403c20e34c7ac96159e9 2 | -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.exe -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/AvCoverDownloader.pdb -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvCoverDownloader_f2cppv/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /AvMatchCheck/.vs/AvMatchCheck/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/.vs/AvMatchCheck/v16/.suo -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29728.190 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvMatchCheck", "AvMatchCheck\AvMatchCheck.csproj", "{874EA013-E55B-426F-9B88-AABA13B55037}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B50E03C6-D986-45EF-8987-F3995662A54A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/Av.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | class Av 10 | { 11 | public bool file { get; set; } 12 | public string Id { get; set; } 13 | public string Oname { get; set; } 14 | public string Path { get; set; } 15 | public string ToPath { get; set; } 16 | public string Html { get; set; } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/ExeLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace AvCoverDownloader 9 | { 10 | class ExeLog 11 | { 12 | private static StreamWriter sw1; 13 | 14 | /// 15 | /// Txt操作 16 | /// 17 | /// 更新内容 18 | /// 更新txt名 19 | /// 更新文件夹 20 | public static void UrlTxt(string content, string name, string fails) 21 | { 22 | //string y = AppDomain.CurrentDomain.BaseDirectory;//获取当前程序的位置 23 | // string fileStr1 = y.Replace("\\bin\\Debug\\", fails); 24 | // fileStr1 += fails; 25 | // string fileStr1 = "F:\\自有商品获取发布\\"+ fails; 26 | string fileStr1 = fails;//获取txt所在文件 27 | System.IO.Directory.CreateDirectory(fileStr1); 28 | DirectoryInfo dir = new DirectoryInfo(fileStr1); 29 | dir.Create();//自行判断一下是否存在。 30 | string fileStr = fileStr1 + "\\" + name + ".txt"; 31 | if (!File.Exists(fileStr)) 32 | { 33 | FileStream fs1 = new FileStream(fileStr, FileMode.Create, FileAccess.Write);//创建写入文件 34 | StreamWriter sw = new StreamWriter(fs1); 35 | sw.WriteLine(content); 36 | sw.Close(); 37 | fs1.Close(); 38 | } 39 | else 40 | { 41 | sw1 = File.AppendText(fileStr); 42 | sw1.WriteLine(content); 43 | sw1.Close(); 44 | } 45 | } 46 | 47 | public static void WriteLog(string msg) 48 | { 49 | string now = DateTime.Now.ToString("yyyyMMdd"); 50 | //每一天分开保存 51 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 52 | string dirPath = logpath + "log" + "\\" + now + "\\"; 53 | //string txtpath = "F:\\FilePath\\PackageSvr\\"; 54 | WriteLog(msg, "Worklog.txt", dirPath); 55 | //WriteLog(dirPath, "Worklog.txt", txtpath); 56 | } 57 | 58 | public static void WriteLog(string logName, string msg) 59 | { 60 | string now = DateTime.Now.ToString("yyyyMMdd"); 61 | 62 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 63 | string dirPath = logpath + "log" + "\\" + now + "\\"; 64 | 65 | WriteLog(msg, logName, dirPath); 66 | 67 | } 68 | 69 | 70 | public static void WriteLog(string msg, string logName, string dirPath) 71 | { 72 | if (!Directory.Exists(dirPath)) 73 | { 74 | Directory.CreateDirectory(dirPath); 75 | } 76 | string filePath = dirPath + logName; 77 | 78 | using (FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write, FileShare.ReadWrite)) 79 | { 80 | using (StreamWriter sw = new StreamWriter(fs, Encoding.UTF8)) 81 | { 82 | //声明数据流文件写入方法 83 | sw.Write(msg); 84 | } 85 | } 86 | 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("AvCoverDownloader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AvCoverDownloader")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("874ea013-e55b-426f-9b88-aaba13b55037")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvMatchCheck.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// 一个强类型的资源类,用于查找本地化的字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// 返回此类使用的缓存的 ResourceManager 实例。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AvMatchCheck.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// 使用此强类型资源类,为所有资源查找 51 | /// 重写当前线程的 CurrentUICulture 属性。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvMatchCheck.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.6.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/bin/Debug/AvMatchCheck.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/bin/Debug/AvMatchCheck.exe -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/bin/Debug/AvMatchCheck.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/bin/Debug/AvMatchCheck.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/bin/Debug/AvMatchCheck.pdb -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/bin/Debug/address.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/bin/Debug/address.ini -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.Form1.resources -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | a42769cb45dceebddcc1d5d07ea285218e267567 2 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojAssemblyReference.cache 2 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 3 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 4 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 5 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 6 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 7 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 8 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 9 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 10 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 11 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 12 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 13 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 14 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojResolveAssemblyReference.cache 15 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 16 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 17 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 18 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 19 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 20 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 21 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.Properties.Resources.resources -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9ecd232ef4716439dcb75d9874b3548bc4efd4ef 2 | -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.exe -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/AvMatchCheck.pdb -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /AvMatchCheck/AvMatchCheck/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMatchCheck/AvMatchCheck/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /AvMosaicSpot/.vs/AvMosaicSpot/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/.vs/AvMosaicSpot/v16/.suo -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28010.2026 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AvMosaicSpot", "AvMosaicSpot\AvMosaicSpot.csproj", "{874EA013-E55B-426F-9B88-AABA13B55037}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B50E03C6-D986-45EF-8987-F3995662A54A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/Av.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | class Av 10 | { 11 | public string Id { get; set; } 12 | public string AllPath { get; set; } 13 | public string Name { get; set; } 14 | public string Path { get; set; } 15 | public string Html { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/Download.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Net; 6 | using System.Text; 7 | using System.Threading.Tasks; 8 | 9 | namespace AvCoverDownloader 10 | { 11 | class Download 12 | { 13 | public static void HttpDownloadFile(string url, string path, string fileName) 14 | { 15 | if (File.Exists(path + fileName)) 16 | { 17 | return; 18 | } 19 | 20 | try 21 | { 22 | // 设置参数 23 | HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest; 24 | //request.Proxy = new WebProxy("127.0.0.1:1080"); 25 | request.Proxy = null; 26 | //发送请求并获取相应回应数据 27 | HttpWebResponse response = request.GetResponse() as HttpWebResponse; 28 | 29 | double dataLengthToRead = response.ContentLength; 30 | //直到request.GetResponse()程序才开始向目标网页发送Post请求 31 | Stream responseStream = response.GetResponseStream(); 32 | 33 | //创建本地文件写入流 34 | Stream stream = new FileStream(path + fileName + ".covertemp", FileMode.Create); 35 | byte[] bArr = new byte[1024 * 512]; 36 | 37 | int size = responseStream.Read(bArr, 0, (int)bArr.Length); 38 | while (size > 0) 39 | { 40 | stream.Write(bArr, 0, size); 41 | size = responseStream.Read(bArr, 0, (int)bArr.Length); 42 | } 43 | stream.Close(); 44 | responseStream.Close(); 45 | 46 | File.Move(path + fileName + ".covertemp", path + fileName); 47 | } 48 | catch (Exception ex) 49 | { 50 | Console.Out.Write(ex.StackTrace); 51 | } 52 | 53 | }//method 54 | 55 | public static string GetHtml(string url, Encoding ed) 56 | { 57 | string Html = string.Empty;//初始化新的webRequst 58 | HttpWebRequest Request = (HttpWebRequest)WebRequest.Create(url); 59 | //Request.Proxy = new WebProxy("127.0.0.1:1080"); 60 | Request.Proxy = null; 61 | Request.KeepAlive = true; 62 | Request.ProtocolVersion = HttpVersion.Version11; 63 | Request.Method = "GET"; 64 | Request.Accept = "*/* "; 65 | Request.UserAgent = "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.5 (KHTML, like Gecko) Chrome/19.0.1084.56 Safari/536.5"; 66 | Request.Referer = url; 67 | 68 | HttpWebResponse htmlResponse = (HttpWebResponse)Request.GetResponse(); 69 | //从Internet资源返回数据流 70 | Stream htmlStream = htmlResponse.GetResponseStream(); 71 | //读取数据流 72 | StreamReader weatherStreamReader = new StreamReader(htmlStream, ed); 73 | //读取数据 74 | 75 | Html = weatherStreamReader.ReadToEnd(); 76 | weatherStreamReader.Close(); 77 | htmlStream.Close(); 78 | htmlResponse.Close(); 79 | //针对不同的网站查看html源文件 80 | return Html; 81 | } 82 | 83 | public static string GetHtml(string url) 84 | { 85 | return GetHtml(url, Encoding.UTF8); 86 | } 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.IO; 7 | using System.Linq; 8 | using System.Text; 9 | using System.Text.RegularExpressions; 10 | using System.Threading; 11 | using System.Threading.Tasks; 12 | using System.Windows.Forms; 13 | 14 | namespace AvCoverDownloader 15 | { 16 | public partial class Form1 : Form 17 | { 18 | public Form1() 19 | { 20 | InitializeComponent(); 21 | } 22 | 23 | private void button1_Click(object sender, EventArgs e) 24 | { 25 | dilog.Description = "请选择路径"; 26 | DialogResult res = dilog.ShowDialog(); 27 | if (res == DialogResult.OK || res == DialogResult.Yes) 28 | { 29 | textBox1.Text = dilog.SelectedPath; 30 | } 31 | } 32 | 33 | List avs; 34 | 35 | private void button2_Click(object sender, EventArgs e) 36 | { 37 | if (!Directory.Exists(textBox1.Text)) 38 | { 39 | MessageBox.Show("请先选择路径"); 40 | return; 41 | } 42 | 43 | avs = new List(); 44 | string[] folders = Directory.GetDirectories(textBox1.Text); 45 | foreach (string folder in folders) 46 | { 47 | int fg = folder.LastIndexOf("\\") + 1; 48 | string name = folder.Substring(fg, folder.Length - fg).Trim(); 49 | //Match match = new Regex(@"([A-Za-z0-9]+[-_]*?[A-Za-z0-9]+)\s*").Match(name); 50 | //Match match = new Regex(@"([A-Za-z0-9]+[-_]*[A-Za-z0-9]+[-_]*[A-Za-z0-9]*)\s*").Match(name); 51 | Match match = match = new Regex(@"(?:[0-9]{4}-[0-9]{2}-[0-9]{2})?\s?([A-Za-z0-9]+[-_]*[A-Za-z0-9]+[-_]*[A-Za-z0-9]*)\s*").Match(name); 52 | if (match.Success) { 53 | string fhid = match.Groups[1].Value; 54 | textBox2.AppendText(fhid + "\r\n"); 55 | Av av = new Av(); 56 | av.Id = fhid.Trim(); 57 | av.Path = folder; 58 | avs.Add(av); 59 | } 60 | else 61 | textBox3.AppendText(name + "\r\n"); 62 | }//for 63 | 64 | }//method 65 | 66 | private void button3_Click(object sender, EventArgs e) 67 | { 68 | this.textBox3.AppendText("\r\n---下载日志---\r\n"); 69 | 70 | button3.Enabled = false; 71 | Collector cl = new Collector(SynchronizationContext.Current,avs); 72 | cl.CollectorLog += (o, text) => 73 | { 74 | this.textBox4.AppendText(text + "\r\n"); 75 | }; 76 | cl.ErrorLog += (o, text) => 77 | { 78 | this.textBox3.AppendText(text + "\r\n"); 79 | }; 80 | cl.Start(); 81 | } 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("AvCoverDownloader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AvCoverDownloader")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("874ea013-e55b-426f-9b88-aaba13b55037")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvMosaicSpot.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// 一个强类型的资源类,用于查找本地化的字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// 返回此类使用的缓存的 ResourceManager 实例。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AvMosaicSpot.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// 重写当前线程的 CurrentUICulture 属性 51 | /// 重写当前线程的 CurrentUICulture 属性。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvMosaicSpot.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "15.8.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.Form1.resources -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.Properties.Resources.resources -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6f5dc0e86e8c443a13232dffb7cdf7a28fcf57db 2 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojAssemblyReference.cache 2 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 3 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 4 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 5 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 6 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 7 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 8 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 9 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 10 | F:\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 11 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 12 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 13 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 14 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojResolveAssemblyReference.cache 15 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 16 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 17 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 18 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 19 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 20 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 21 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 22 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 23 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 24 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojResolveAssemblyReference.cache 25 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 26 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 27 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 28 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 29 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 30 | C:\Users\heliotrope\OneDrive\C#\AvCoverDownloader2\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 31 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.exe -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvCoverDownloader.pdb -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.Properties.Resources.resources -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6782486b8ca73fdb1f85c4b917ec13bebe6b44dc 2 | -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.exe -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/AvMosaicSpot.pdb -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /AvMosaicSpot/AvMosaicSpot/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/AvMosaicSpot/AvMosaicSpot/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /NfoDownload/.vs/NfoDownloader/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/.vs/NfoDownloader/v16/.suo -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/Av.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | class Av 10 | { 11 | public string Id { get; set; } 12 | public string Path { get; set; } 13 | public string Name { get; set; } 14 | public string Html { get; set; } 15 | 16 | public bool CD1 { get; set; } 17 | 18 | public List stars = new List(); 19 | public List tags = new List(); 20 | 21 | public string date { get; set; } 22 | public string title { get; set; } 23 | 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/ExeLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace AvCoverDownloader 9 | { 10 | class ExeLog 11 | { 12 | private static StreamWriter sw1; 13 | 14 | /// 15 | /// Txt操作 16 | /// 17 | /// 更新内容 18 | /// 更新txt名 19 | /// 更新文件夹 20 | public static void UrlTxt(string content, string name, string fails) 21 | { 22 | //string y = AppDomain.CurrentDomain.BaseDirectory;//获取当前程序的位置 23 | // string fileStr1 = y.Replace("\\bin\\Debug\\", fails); 24 | // fileStr1 += fails; 25 | // string fileStr1 = "F:\\自有商品获取发布\\"+ fails; 26 | string fileStr1 = fails;//获取txt所在文件 27 | System.IO.Directory.CreateDirectory(fileStr1); 28 | DirectoryInfo dir = new DirectoryInfo(fileStr1); 29 | dir.Create();//自行判断一下是否存在。 30 | string fileStr = fileStr1 + "\\" + name + ".txt"; 31 | if (!File.Exists(fileStr)) 32 | { 33 | FileStream fs1 = new FileStream(fileStr, FileMode.Create, FileAccess.Write);//创建写入文件 34 | StreamWriter sw = new StreamWriter(fs1); 35 | sw.WriteLine(content); 36 | sw.Close(); 37 | fs1.Close(); 38 | } 39 | else 40 | { 41 | sw1 = File.AppendText(fileStr); 42 | sw1.WriteLine(content); 43 | sw1.Close(); 44 | } 45 | } 46 | 47 | public static void WriteLog(string msg) 48 | { 49 | string now = DateTime.Now.ToString("yyyyMMdd"); 50 | //每一天分开保存 51 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 52 | string dirPath = logpath + "log" + "\\" + now + "\\"; 53 | //string txtpath = "F:\\FilePath\\PackageSvr\\"; 54 | WriteLog(msg, "Worklog.txt", dirPath); 55 | //WriteLog(dirPath, "Worklog.txt", txtpath); 56 | } 57 | 58 | public static void WriteLog(string logName, string msg) 59 | { 60 | string now = DateTime.Now.ToString("yyyyMMdd"); 61 | 62 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 63 | string dirPath = logpath + "log" + "\\" + now + "\\"; 64 | 65 | WriteLog(msg, logName, dirPath); 66 | 67 | } 68 | 69 | 70 | public static void WriteLog(string msg, string logName, string dirPath) 71 | { 72 | if (!Directory.Exists(dirPath)) 73 | { 74 | Directory.CreateDirectory(dirPath); 75 | } 76 | string filePath = dirPath + logName; 77 | 78 | using (FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write, FileShare.ReadWrite)) 79 | { 80 | using (StreamWriter sw = new StreamWriter(fs, Encoding.UTF8)) 81 | { 82 | //声明数据流文件写入方法 83 | sw.Write(msg); 84 | } 85 | } 86 | 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("AvCoverDownloader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AvCoverDownloader")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("874ea013-e55b-426f-9b88-aaba13b55037")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace NfoDownloader.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// 一个强类型的资源类,用于查找本地化的字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或移除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// 返回此类使用的缓存的 ResourceManager 实例。 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("NfoDownloader.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// 重写当前线程的 CurrentUICulture 属性 51 | /// 重写当前线程的 CurrentUICulture 属性。 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | } 63 | } 64 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本:4.0.30319.42000 5 | // 6 | // 对此文件的更改可能会导致不正确的行为,并且如果 7 | // 重新生成代码,这些更改将会丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace NfoDownloader.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "16.7.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/bin/Debug/NfoDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/bin/Debug/NfoDownloader.exe -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/bin/Debug/NfoDownloader.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/bin/Debug/NfoDownloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/bin/Debug/NfoDownloader.pdb -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/bin/Debug/address.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/bin/Debug/address.ini -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0729741ef990852d846bcd098b8308f436f457d7 2 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 2 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 3 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 4 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.csprojAssemblyReference.cache 5 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 6 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 7 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.GenerateResource.cache 8 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.csproj.CoreCompileInputs.cache 9 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 10 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 11 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.exe -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.pdb -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.Properties.Resources.resources -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | dfd2e048f4648e85650569465074a2aedf420902 2 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\bin\Debug\NfoDownloader.exe.config 2 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\bin\Debug\NfoDownloader.exe 3 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\bin\Debug\NfoDownloader.pdb 4 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 5 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\NfoDownloader.Properties.Resources.resources 6 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\NfoDownloader.csproj.GenerateResource.cache 7 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\NfoDownloader.csproj.CoreCompileInputs.cache 8 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\NfoDownloader.exe 9 | D:\Github\JapanAvStorage\NfoDownload\AvCoverDownloader\obj\Debug\NfoDownloader.pdb 10 | -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.exe -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/NfoDownloader.pdb -------------------------------------------------------------------------------- /NfoDownload/AvCoverDownloader/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/AvCoverDownloader/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /NfoDownload/NfoDownloader.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29728.190 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NfoDownloader", "AvCoverDownloader\NfoDownloader.csproj", "{874EA013-E55B-426F-9B88-AABA13B55037}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B50E03C6-D986-45EF-8987-F3995662A54A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/.signature.p7s -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/MSTest.TestAdapter.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/MSTest.TestAdapter.1.3.2.nupkg -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/cs/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/de/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/es/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/fr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/it/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ja/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ko/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pl/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/pt/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/ru/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/tr/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hans/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/_common/zh-Hant/Microsoft.VisualStudio.TestPlatform.TestFramework.resources.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/net45/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/net45/MSTest.TestAdapter.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | %(CurrentUICultureHierarchy.Identity) 25 | 26 | 27 | 28 | %(MSTestV2ResourceFiles.CultureString)\%(Filename)%(Extension) 29 | PreserveNewest 30 | False 31 | 32 | 33 | 34 | 35 | -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/netcoreapp1.0/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/uap10.0/MSTest.TestAdapter.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Microsoft.VisualStudio.TestPlatform.MSTest.TestAdapter.dll 6 | PreserveNewest 7 | False 8 | 9 | 10 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.Interface.dll 11 | PreserveNewest 12 | False 13 | 14 | 15 | Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll 16 | PreserveNewest 17 | False 18 | 19 | 20 | -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/uap10.0/MSTest.TestAdapter.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | true 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | %(CurrentUICultureHierarchy.Identity) 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 34 | $(CurrentUICultureHierarchy)\%(FileName).resources.dll 35 | PreserveNewest 36 | %(FullPath) 37 | False 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestAdapter.1.3.2/build/uap10.0/Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestFramework.1.3.2/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestFramework.1.3.2/.signature.p7s -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestFramework.1.3.2/MSTest.TestFramework.1.3.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestFramework.1.3.2/MSTest.TestFramework.1.3.2.nupkg -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/net45/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll -------------------------------------------------------------------------------- /NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/NfoDownload/packages/MSTest.TestFramework.1.3.2/lib/uap10.0/Microsoft.VisualStudio.TestPlatform.TestFramework.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # JapanAvStorage 2 | 大姐姐的收纳整理术 3 | 4 | 让大姐姐变得井然有序
5 | 6 | AvCoverDownloader
自动识别目录下的番号 下载大姐姐的靓照 和 本片所有出场的大姐姐姓名
7 | 8 | 自动按 骑兵/步兵 分到当前目录下 并整理番号信息到nfo文件(视频软件用于识别影片信息的文件 比如:plex,emby,jellyfin等)
9 | 10 | 自动在目录下创建 参演女优名称.txt 方便使用 **everything** 检索 (例: 081311-777 あいりみく.star.txt)
11 | 12 | 13 | 14 | 示例图为 使用 [**Jellyfin**](https://github.com/jellyfin/jellyfin) 读取整理过后的目录
15 | 16 | ![image](https://github.com/lqs1848/JapanAvStorage/blob/master/info/1.jpg)
17 | ![image](https://github.com/lqs1848/JapanAvStorage/blob/master/info/2.jpg)
18 | ![image](https://github.com/lqs1848/JapanAvStorage/blob/master/info/3.png)
19 | 20 | ![image](https://github.com/lqs1848/JapanAvStorage/blob/master/info/3.jpg)
21 | 22 | ![image](https://github.com/lqs1848/JapanAvStorage/blob/master/info/4.jpg)
23 | 24 | ![image](https://github.com/lqs1848/JapanAvStorage/blob/master/info/5.jpg)
25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | ![image](https://github.com/lqs1848/JapanAvStorage/blob/master/info/111.jpg)
33 | 34 | ![image](https://github.com/lqs1848/JapanAvStorage/blob/master/info/222.jpg)
35 | 36 | 地址过期了自己替换 address.ini 中的地址就行
37 | 38 | 如果不挂代理 proxy=127.0.0.1:1080 删掉就好
39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | **其他** 51 | 52 | AvCoverDownloader2只是换了一个网站抓取 没有2就是 抓去javbus f2cppv 识别 f2c 的 53 | 54 |
55 | AvMatchCheck 自动迭代查找目录下所有的子目录的 所有视频文件 识别视频文件名称中的番号 并单独为这个视频生成一个文件夹 56 |
57 | AvMosaicSpot 自动识别目录下的AV 番号 查询是有码还是无码的大姐姐 自动分类
58 |
59 | NfoDownload 为视频文件生成 .nfo文件 可以为jellyfin添加 发行日期 TAG 导演 女优信息 还有厂商 60 |
61 | StartDownload 女优头像采集 请指定到Jellyfin的数据存储目录 下的 /metadata/People 62 | 63 |
64 | 65 |
66 | 67 |
-------------------------------------------------------------------------------- /StartDownload/.vs/StartDownload/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/.vs/StartDownload/v16/.suo -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/Av.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | class Av 10 | { 11 | public string Id { get; set; } 12 | public string Path { get; set; } 13 | public string Name { get; set; } 14 | public string Html { get; set; } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/ExeLog.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.IO; 4 | using System.Linq; 5 | using System.Text; 6 | using System.Threading.Tasks; 7 | 8 | namespace AvCoverDownloader 9 | { 10 | class ExeLog 11 | { 12 | private static StreamWriter sw1; 13 | 14 | /// 15 | /// Txt操作 16 | /// 17 | /// 更新内容 18 | /// 更新txt名 19 | /// 更新文件夹 20 | public static void UrlTxt(string content, string name, string fails) 21 | { 22 | //string y = AppDomain.CurrentDomain.BaseDirectory;//获取当前程序的位置 23 | // string fileStr1 = y.Replace("\\bin\\Debug\\", fails); 24 | // fileStr1 += fails; 25 | // string fileStr1 = "F:\\自有商品获取发布\\"+ fails; 26 | string fileStr1 = fails;//获取txt所在文件 27 | System.IO.Directory.CreateDirectory(fileStr1); 28 | DirectoryInfo dir = new DirectoryInfo(fileStr1); 29 | dir.Create();//自行判断一下是否存在。 30 | string fileStr = fileStr1 + "\\" + name + ".txt"; 31 | if (!File.Exists(fileStr)) 32 | { 33 | FileStream fs1 = new FileStream(fileStr, FileMode.Create, FileAccess.Write);//创建写入文件 34 | StreamWriter sw = new StreamWriter(fs1); 35 | sw.WriteLine(content); 36 | sw.Close(); 37 | fs1.Close(); 38 | } 39 | else 40 | { 41 | sw1 = File.AppendText(fileStr); 42 | sw1.WriteLine(content); 43 | sw1.Close(); 44 | } 45 | } 46 | 47 | public static void WriteLog(string msg) 48 | { 49 | string now = DateTime.Now.ToString("yyyyMMdd"); 50 | //每一天分开保存 51 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 52 | string dirPath = logpath + "log" + "\\" + now + "\\"; 53 | //string txtpath = "F:\\FilePath\\PackageSvr\\"; 54 | WriteLog(msg, "Worklog.txt", dirPath); 55 | //WriteLog(dirPath, "Worklog.txt", txtpath); 56 | } 57 | 58 | public static void WriteLog(string logName, string msg) 59 | { 60 | string now = DateTime.Now.ToString("yyyyMMdd"); 61 | 62 | string logpath = AppDomain.CurrentDomain.BaseDirectory; 63 | string dirPath = logpath + "log" + "\\" + now + "\\"; 64 | 65 | WriteLog(msg, logName, dirPath); 66 | 67 | } 68 | 69 | 70 | public static void WriteLog(string msg, string logName, string dirPath) 71 | { 72 | if (!Directory.Exists(dirPath)) 73 | { 74 | Directory.CreateDirectory(dirPath); 75 | } 76 | string filePath = dirPath + logName; 77 | 78 | using (FileStream fs = new FileStream(filePath, FileMode.Append, FileAccess.Write, FileShare.ReadWrite)) 79 | { 80 | using (StreamWriter sw = new StreamWriter(fs, Encoding.UTF8)) 81 | { 82 | //声明数据流文件写入方法 83 | sw.Write(msg); 84 | } 85 | } 86 | 87 | } 88 | } 89 | } 90 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.IO; 7 | using System.Linq; 8 | using System.Text; 9 | using System.Text.RegularExpressions; 10 | using System.Threading; 11 | using System.Threading.Tasks; 12 | using System.Windows.Forms; 13 | 14 | namespace AvCoverDownloader 15 | { 16 | public partial class Form1 : Form 17 | { 18 | public Form1() 19 | { 20 | InitializeComponent(); 21 | } 22 | 23 | private void button1_Click(object sender, EventArgs e) 24 | { 25 | dilog.Description = "请选择路径"; 26 | DialogResult res = dilog.ShowDialog(); 27 | if (res == DialogResult.OK || res == DialogResult.Yes) 28 | { 29 | textBox1.Text = dilog.SelectedPath; 30 | } 31 | } 32 | 33 | private void button3_Click(object sender, EventArgs e) 34 | { 35 | this.textBox3.AppendText("\r\n---下载日志---\r\n"); 36 | button3.Enabled = false; 37 | Collector cl = new Collector(SynchronizationContext.Current, textBox1.Text, comboBox.Text); 38 | cl.CollectorLog += (o, text) => 39 | { 40 | this.textBox4.AppendText(text + "\r\n"); 41 | }; 42 | cl.ErrorLog += (o, text) => 43 | { 44 | this.textBox3.AppendText(text + "\r\n"); 45 | }; 46 | cl.Start(); 47 | } 48 | 49 | int getNumberIndex(string fh) 50 | { 51 | char[] chars = fh.ToCharArray(); 52 | for (int i = 0; i < chars.Length; i++) 53 | { 54 | if (Char.IsNumber(chars[i])) 55 | return i; 56 | } 57 | return -1; 58 | } 59 | 60 | private void Form1_Load(object sender, EventArgs e) 61 | { 62 | IniFiles iniFile = new IniFiles("address.ini"); 63 | string path = iniFile.ReadString("javbus", "path", "https://www.javbus.com"); 64 | string[] paths = path.Split(','); 65 | foreach (string p in paths) 66 | { 67 | comboBox.Items.Add(p); 68 | } 69 | comboBox.Text = comboBox.Items[0].ToString(); 70 | 71 | string proxy = iniFile.ReadString("javbus", "proxy", ""); 72 | textBox5.Text = proxy; 73 | Download.SetProxy(textBox5.Text); 74 | } 75 | 76 | private void textBox5_TextChanged(object sender, EventArgs e) 77 | { 78 | Download.SetProxy(textBox5.Text); 79 | } 80 | } 81 | } 82 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace AvCoverDownloader 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("AvCoverDownloader")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("AvCoverDownloader")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("874ea013-e55b-426f-9b88-aaba13b55037")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | // 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号 33 | // 方法是按如下所示使用“*”: : 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本: 4.0.30319.42000 5 | // 6 | // 对此文件的更改可能导致不正确的行为,如果 7 | // 重新生成代码,则所做更改将丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvCoverDownloader.Properties 12 | { 13 | 14 | 15 | /// 16 | /// 强类型资源类,用于查找本地化字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// 返回此类使用的缓存 ResourceManager 实例。 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("AvCoverDownloader.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// 覆盖当前线程的 CurrentUICulture 属性 56 | /// 使用此强类型的资源类的资源查找。 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace AvCoverDownloader.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/bin/Debug/AvCoverDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/bin/Debug/AvCoverDownloader.exe -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/bin/Debug/AvCoverDownloader.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/bin/Debug/AvCoverDownloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/bin/Debug/AvCoverDownloader.pdb -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/bin/Debug/address.ini: -------------------------------------------------------------------------------- 1 | [javbus] 2 | path=https://www.javbus.com,https://www.cdnbus.cloud,https://www.dmmsee.cloud,https://www.dmmbus.cloud,https://www.busjav.cloud,https://www.busdmm.zone,https://www.fanbus.pw,https://www.busfan.one,https://www.fanbus.life,https://www.fanbus.us 3 | proxy=127.0.0.1:1080 -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/.NETFramework,Version=v4.6.1.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.6.1", FrameworkDisplayName = ".NET Framework 4.6.1")] 5 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.Form1.resources -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.Properties.Resources.resources -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | b71ee46f82adea3ea98b403c20e34c7ac96159e9 2 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.exe -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/AvCoverDownloader.pdb -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/Start.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/Start.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/StartDownload.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9ecd232ef4716439dcb75d9874b3548bc4efd4ef 2 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/StartDownload.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.Form1.resources 2 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.Properties.Resources.resources 3 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\obj\Debug\StartDownload.csproj.GenerateResource.cache 4 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\obj\Debug\StartDownload.csproj.CoreCompileInputs.cache 5 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.exe 6 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\obj\Debug\AvCoverDownloader.pdb 7 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe.config 8 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\bin\Debug\AvCoverDownloader.exe 9 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\bin\Debug\AvCoverDownloader.pdb 10 | D:\Github\JapanAvStorage\StartDownload\AvCoverDownloader\obj\Debug\StartDownload.csprojAssemblyReference.cache 11 | -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/StartDownload.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/StartDownload.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/StartDownload.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/StartDownload.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /StartDownload/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/StartDownload/AvCoverDownloader/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /StartDownload/StartDownload.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29728.190 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StartDownload", "AvCoverDownloader\StartDownload.csproj", "{874EA013-E55B-426F-9B88-AABA13B55037}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {874EA013-E55B-426F-9B88-AABA13B55037}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {874EA013-E55B-426F-9B88-AABA13B55037}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {B50E03C6-D986-45EF-8987-F3995662A54A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /info/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/info/1.jpg -------------------------------------------------------------------------------- /info/111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/info/111.jpg -------------------------------------------------------------------------------- /info/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/info/2.jpg -------------------------------------------------------------------------------- /info/222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/info/222.jpg -------------------------------------------------------------------------------- /info/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/info/3.jpg -------------------------------------------------------------------------------- /info/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/info/3.png -------------------------------------------------------------------------------- /info/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/info/4.jpg -------------------------------------------------------------------------------- /info/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/info/5.jpg -------------------------------------------------------------------------------- /nameTest/.vs/nameTest/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/.vs/nameTest/v16/.suo -------------------------------------------------------------------------------- /nameTest/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /nameTest/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace nameTest 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// 必需的设计器变量。 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// 清理所有正在使用的资源。 12 | /// 13 | /// 如果应释放托管资源,为 true;否则为 false。 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows 窗体设计器生成的代码 24 | 25 | /// 26 | /// 设计器支持所需的方法 - 不要修改 27 | /// 使用代码编辑器修改此方法的内容。 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.textBox1 = new System.Windows.Forms.TextBox(); 32 | this.textBox2 = new System.Windows.Forms.TextBox(); 33 | this.button1 = new System.Windows.Forms.Button(); 34 | this.SuspendLayout(); 35 | // 36 | // textBox1 37 | // 38 | this.textBox1.Location = new System.Drawing.Point(12, 12); 39 | this.textBox1.Multiline = true; 40 | this.textBox1.Name = "textBox1"; 41 | this.textBox1.Size = new System.Drawing.Size(167, 426); 42 | this.textBox1.TabIndex = 0; 43 | // 44 | // textBox2 45 | // 46 | this.textBox2.Location = new System.Drawing.Point(235, 12); 47 | this.textBox2.Multiline = true; 48 | this.textBox2.Name = "textBox2"; 49 | this.textBox2.ReadOnly = true; 50 | this.textBox2.Size = new System.Drawing.Size(171, 426); 51 | this.textBox2.TabIndex = 1; 52 | // 53 | // button1 54 | // 55 | this.button1.Location = new System.Drawing.Point(185, 164); 56 | this.button1.Name = "button1"; 57 | this.button1.Size = new System.Drawing.Size(44, 114); 58 | this.button1.TabIndex = 2; 59 | this.button1.Text = "button1"; 60 | this.button1.UseVisualStyleBackColor = true; 61 | this.button1.Click += new System.EventHandler(this.button1_Click); 62 | // 63 | // Form1 64 | // 65 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F); 66 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 67 | this.ClientSize = new System.Drawing.Size(418, 450); 68 | this.Controls.Add(this.button1); 69 | this.Controls.Add(this.textBox2); 70 | this.Controls.Add(this.textBox1); 71 | this.Name = "Form1"; 72 | this.Text = "Form1"; 73 | this.ResumeLayout(false); 74 | this.PerformLayout(); 75 | 76 | } 77 | 78 | #endregion 79 | 80 | private System.Windows.Forms.TextBox textBox1; 81 | private System.Windows.Forms.TextBox textBox2; 82 | private System.Windows.Forms.Button button1; 83 | } 84 | } 85 | 86 | -------------------------------------------------------------------------------- /nameTest/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace nameTest 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// 应用程序的主入口点。 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /nameTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // 有关程序集的一般信息由以下 6 | // 控制。更改这些特性值可修改 7 | // 与程序集关联的信息。 8 | [assembly: AssemblyTitle("nameTest")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("nameTest")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // 将 ComVisible 设置为 false 会使此程序集中的类型 18 | //对 COM 组件不可见。如果需要从 COM 访问此程序集中的类型 19 | //请将此类型的 ComVisible 特性设置为 true。 20 | [assembly: ComVisible(false)] 21 | 22 | // 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID 23 | [assembly: Guid("47044a6e-4074-4b43-b825-31df9254ad0c")] 24 | 25 | // 程序集的版本信息由下列四个值组成: 26 | // 27 | // 主版本 28 | // 次版本 29 | // 生成号 30 | // 修订号 31 | // 32 | //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 33 | //通过使用 "*",如下所示: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /nameTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // 此代码由工具生成。 4 | // 运行时版本: 4.0.30319.42000 5 | // 6 | // 对此文件的更改可能导致不正确的行为,如果 7 | // 重新生成代码,则所做更改将丢失。 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace nameTest.Properties 12 | { 13 | 14 | 15 | /// 16 | /// 强类型资源类,用于查找本地化字符串等。 17 | /// 18 | // 此类是由 StronglyTypedResourceBuilder 19 | // 类通过类似于 ResGen 或 Visual Studio 的工具自动生成的。 20 | // 若要添加或删除成员,请编辑 .ResX 文件,然后重新运行 ResGen 21 | // (以 /str 作为命令选项),或重新生成 VS 项目。 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// 返回此类使用的缓存 ResourceManager 实例。 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("nameTest.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// 覆盖当前线程的 CurrentUICulture 属性 56 | /// 使用此强类型的资源类的资源查找。 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /nameTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace nameTest.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /nameTest/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /nameTest/bin/Debug/nameTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/bin/Debug/nameTest.exe -------------------------------------------------------------------------------- /nameTest/bin/Debug/nameTest.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /nameTest/bin/Debug/nameTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/bin/Debug/nameTest.pdb -------------------------------------------------------------------------------- /nameTest/nameTest.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30406.217 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "nameTest", "nameTest.csproj", "{47044A6E-4074-4B43-B825-31DF9254AD0C}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {47044A6E-4074-4B43-B825-31DF9254AD0C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {47044A6E-4074-4B43-B825-31DF9254AD0C}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {47044A6E-4074-4B43-B825-31DF9254AD0C}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {47044A6E-4074-4B43-B825-31DF9254AD0C}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {C200D02A-EFF8-4B36-96F7-6ADDFA76F63F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /nameTest/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.5", FrameworkDisplayName = ".NET Framework 4.5")] 5 | -------------------------------------------------------------------------------- /nameTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /nameTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /nameTest/obj/Debug/nameTest.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/obj/Debug/nameTest.Form1.resources -------------------------------------------------------------------------------- /nameTest/obj/Debug/nameTest.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/obj/Debug/nameTest.Properties.Resources.resources -------------------------------------------------------------------------------- /nameTest/obj/Debug/nameTest.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 49ddf053a8af5d6e9369e6d3a8e96ccab85129ad 2 | -------------------------------------------------------------------------------- /nameTest/obj/Debug/nameTest.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\codec\source\repos\nameTest\bin\Debug\nameTest.exe.config 2 | C:\Users\codec\source\repos\nameTest\bin\Debug\nameTest.exe 3 | C:\Users\codec\source\repos\nameTest\bin\Debug\nameTest.pdb 4 | C:\Users\codec\source\repos\nameTest\obj\Debug\nameTest.csprojAssemblyReference.cache 5 | C:\Users\codec\source\repos\nameTest\obj\Debug\nameTest.Form1.resources 6 | C:\Users\codec\source\repos\nameTest\obj\Debug\nameTest.Properties.Resources.resources 7 | C:\Users\codec\source\repos\nameTest\obj\Debug\nameTest.csproj.GenerateResource.cache 8 | C:\Users\codec\source\repos\nameTest\obj\Debug\nameTest.csproj.CoreCompileInputs.cache 9 | C:\Users\codec\source\repos\nameTest\obj\Debug\nameTest.exe 10 | C:\Users\codec\source\repos\nameTest\obj\Debug\nameTest.pdb 11 | -------------------------------------------------------------------------------- /nameTest/obj/Debug/nameTest.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/obj/Debug/nameTest.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /nameTest/obj/Debug/nameTest.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/obj/Debug/nameTest.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /nameTest/obj/Debug/nameTest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/obj/Debug/nameTest.exe -------------------------------------------------------------------------------- /nameTest/obj/Debug/nameTest.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lqs1848/JapanAvStorage/7f29c1463f3bb70a5c2727cad88e558130859076/nameTest/obj/Debug/nameTest.pdb --------------------------------------------------------------------------------