2020-12-25

Python获取文件夹和各个子文件夹下的文件和数量

具体业务:
1.获取目录文件中的文件名和数量
2.和获取目录文件中根目录的文件名和数量
3.统计所有的文件数量
注:内容将全部输出出来

import os
import csv
path = r"D:\\File"
allcount = 0

def count_dir(path):
    # 按顺序遍历文件夹系统,并计算对应文件夹下文件数
    for p in os.listdir(path):
        p_path = os.path.join(path, p)
        if os.path.isdir(p_path):
            # 如果为文件夹
            print(p, end="\t")
            num = count_files(p_path)
            print("", num, end="\n")
            count_dir(p_path)

def count_files(path):
    # 计算指定路径下的文件数量,不包含文件夹
    res = 0
    print("文件: ")
    for f in os.listdir(path):
        f_path = os.path.join(path, f)
        if os.path.isfile(f_path):
            # 如果为文件
            print(os.path.basename(f_path))
            res += 1
    return res
allcount += count_files(path)

print("The Path: ", path, end="\n")
count_dir(path)
# 总数
for root, dirs, filenames in os.walk(r"\\10.220.130.130\lpms"):
    for file in filenames:
        allcount += 1
print("allcount: ", allcount)

输出结果:
例子

C:\Programs\Python\Python39\python.exe F:/Python/Scripts/File.py
文件: 
The Path:  F:\\buibuibui
GZSweb	文件: 
GZSweb.sln
 1
.vs	文件: 
 0
GZSweb	文件: 
 0
config	文件: 
applicationhost.config
 1
v16	文件: 
.suo
 1
GZSweb	文件: 
favicon.ico
Global.asax
Global.asax.cs
GZSweb.csproj
GZSweb.csproj.user
packages.config
Web.config
Web.Debug.config
Web.Release.config
 9
App_Data	文件: 
 0
App_Start	文件: 
BundleConfig.cs
FilterConfig.cs
RouteConfig.cs
 3
bin	文件: 
Antlr3.Runtime.dll
Antlr3.Runtime.pdb
GZSweb.dll
GZSweb.dll.config
GZSweb.pdb
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
Microsoft.Web.Infrastructure.dll
Newtonsoft.Json.dll
Newtonsoft.Json.xml
System.Web.Helpers.dll
System.Web.Helpers.xml
System.Web.Mvc.dll
System.Web.Mvc.xml
System.Web.Optimization.dll
System.Web.Optimization.xml
System.Web.Razor.dll
System.Web.Razor.xml
System.Web.WebPages.Deployment.dll
System.Web.WebPages.Deployment.xml
System.Web.WebPages.dll
System.Web.WebPages.Razor.dll
System.Web.WebPages.Razor.xml
System.Web.WebPages.xml
WebGrease.dll
 25
roslyn	文件: 
csc.exe
csc.exe.config
csc.rsp
csi.exe
csi.exe.config
csi.rsp
Microsoft.Build.Tasks.CodeAnalysis.dll
Microsoft.CodeAnalysis.CSharp.dll
Microsoft.CodeAnalysis.CSharp.Scripting.dll
Microsoft.CodeAnalysis.dll
Microsoft.CodeAnalysis.Scripting.dll
Microsoft.CodeAnalysis.VisualBasic.dll
Microsoft.CSharp.Core.targets
Microsoft.DiaSymReader.Native.amd64.dll
Microsoft.DiaSymReader.Native.x86.dll
Microsoft.Managed.Core.targets
Microsoft.VisualBasic.Core.targets
Microsoft.Win32.Primitives.dll
System.AppContext.dll
System.Collections.Immutable.dll
System.Console.dll
System.Diagnostics.DiagnosticSource.dll
System.Diagnostics.FileVersionInfo.dll
System.Diagnostics.StackTrace.dll
System.Globalization.Calendars.dll
System.IO.Compression.dll
System.IO.Compression.ZipFile.dll
System.IO.FileSystem.dll
System.IO.FileSystem.Primitives.dll
System.Net.Http.dll
System.Net.Sockets.dll
System.Reflection.Metadata.dll
System.Runtime.InteropServices.RuntimeInformation.dll
System.Security.Cryptography.Algorithms.dll
System.Security.Cryptography.Encoding.dll
System.Security.Cryptography.Primitives.dll
System.Security.Cryptography.X509Certificates.dll
System.Text.Encoding.CodePages.dll
System.Threading.Tasks.Extensions.dll
System.ValueTuple.dll
System.Xml.ReaderWriter.dll
System.Xml.XmlDocument.dll
System.Xml.XPath.dll
System.Xml.XPath.XDocument.dll
vbc.exe
vbc.exe.config
vbc.rsp
VBCSCompiler.exe
VBCSCompiler.exe.config
 49
zh-Hans	文件: 
System.Web.Helpers.resources.dll
System.Web.Mvc.resources.dll
System.Web.Optimization.resources.dll
System.Web.Razor.resources.dll
System.Web.WebPages.Deployment.resources.dll
System.Web.WebPages.Razor.resources.dll
System.Web.WebPages.resources.dll
 7
Content	文件: 
bootstrap-theme.css
bootstrap-theme.css.map
bootstrap-theme.min.css
bootstrap-theme.min.css.map
bootstrap.css
bootstrap.css.map
bootstrap.min.css
bootstrap.min.css.map
Site.css
 9
Controllers	文件: 
AccountController.cs
HomeController.cs
 2
fonts	文件: 
glyphicons-halflings-regular.eot
glyphicons-halflings-regular.svg
glyphicons-halflings-regular.ttf
glyphicons-halflings-regular.woff
glyphicons-halflings-regular.woff2
 5
Models	文件: 
 0
obj	文件: 
 0
Debug	文件: 
.NETFramework,Version=v4.7.2.AssemblyAttributes.cs
DesignTimeResolveAssemblyReferencesInput.cache
GZSweb.csproj.CopyComplete
GZSweb.csproj.CoreCompileInputs.cache
GZSweb.csproj.FileListAbsolute.txt
GZSweb.csprojAssemblyReference.cache
GZSweb.dll
GZSweb.pdb
 8
TempPE	文件: 
 0
Properties	文件: 
AssemblyInfo.cs
 1
Scripts	文件: 
bootstrap.js
bootstrap.min.js
jquery-3.4.1.intellisense.js
jquery-3.4.1.js
jquery-3.4.1.min.js
jquery-3.4.1.min.map
jquery-3.4.1.slim.js
jquery-3.4.1.slim.min.js
jquery-3.4.1.slim.min.map
jquery.validate-vsdoc.js
jquery.validate.js
jquery.validate.min.js
jquery.validate.unobtrusive.js
jquery.validate.unobtrusive.min.js
modernizr-2.8.3.js
 15
Views	文件: 
Web.config
_ViewStart.cshtml
 2
Account	文件: 
 0
Home	文件: 
About.cshtml
Contact.cshtml
Index.cshtml
 3
Shared	文件: 
Error.cshtml
_Layout.cshtml
 2
packages	文件: 
 0
Antlr.3.5.0.2	文件: 
.signature.p7s
Antlr.3.5.0.2.nupkg
 2
lib	文件: 
Antlr3.Runtime.dll
Antlr3.Runtime.pdb
 2
bootstrap.3.4.1	文件: 
.signature.p7s
bootstrap.3.4.1.nupkg
LICENSE.txt
 3
content	文件: 
 0
Content	文件: 
bootstrap-theme.css
bootstrap-theme.css.map
bootstrap-theme.min.css
bootstrap-theme.min.css.map
bootstrap.css
bootstrap.css.map
bootstrap.min.css
bootstrap.min.css.map
 8
fonts	文件: 
glyphicons-halflings-regular.eot
glyphicons-halflings-regular.svg
glyphicons-halflings-regular.ttf
glyphicons-halflings-regular.woff
glyphicons-halflings-regular.woff2
 5
Scripts	文件: 
bootstrap.js
bootstrap.min.js
 2
contentFiles	文件: 
 0
Content	文件: 
bootstrap-theme.css
bootstrap-theme.css.map
bootstrap-theme.min.css
bootstrap-theme.min.css.map
bootstrap.css
bootstrap.css.map
bootstrap.min.css
bootstrap.min.css.map
 8
fonts	文件: 
glyphicons-halflings-regular.eot
glyphicons-halflings-regular.svg
glyphicons-halflings-regular.ttf
glyphicons-halflings-regular.woff
glyphicons-halflings-regular.woff2
 5
Scripts	文件: 
bootstrap.js
bootstrap.min.js
 2
jQuery.3.4.1	文件: 
.signature.p7s
jQuery.3.4.1.nupkg
 2
Content	文件: 
 0
Scripts	文件: 
jquery-3.4.1-vsdoc.js
jquery-3.4.1.js
jquery-3.4.1.min.js
jquery-3.4.1.min.map
jquery-3.4.1.slim.js
jquery-3.4.1.slim.min.js
jquery-3.4.1.slim.min.map
 7
Tools	文件: 
common.ps1
install.ps1
jquery-3.4.1.intellisense.js
uninstall.ps1
 4
jQuery.Validation.1.17.0	文件: 
.signature.p7s
jQuery.Validation.1.17.0.nupkg
 2
Content	文件: 
 0
Scripts	文件: 
jquery.validate-vsdoc.js
jquery.validate.js
jquery.validate.min.js
 3
Microsoft.AspNet.Mvc.5.2.7	文件: 
.signature.p7s
Microsoft.AspNet.Mvc.5.2.7.nupkg
 2
Content	文件: 
Web.config.install.xdt
Web.config.uninstall.xdt
 2
lib	文件: 
 0
net45	文件: 
System.Web.Mvc.dll
System.Web.Mvc.xml
 2
zh-Hans	文件: 
System.Web.Mvc.resources.dll
System.Web.Mvc.xml
 2
Microsoft.AspNet.Mvc.zh-Hans.5.2.7	文件: 
.signature.p7s
Microsoft.AspNet.Mvc.zh-Hans.5.2.7.nupkg
 2
lib	文件: 
 0
net45	文件: 
 0
zh-Hans	文件: 
System.Web.Mvc.resources.dll
System.Web.Mvc.xml
 2
Microsoft.AspNet.Razor.3.2.7	文件: 
.signature.p7s
Microsoft.AspNet.Razor.3.2.7.nupkg
 2
lib	文件: 
 0
net45	文件: 
System.Web.Razor.dll
System.Web.Razor.xml
 2
zh-Hans	文件: 
System.Web.Razor.resources.dll
system.web.razor.xml
 2
Microsoft.AspNet.Razor.zh-Hans.3.2.7	文件: 
.signature.p7s
Microsoft.AspNet.Razor.zh-Hans.3.2.7.nupkg
 2
lib	文件: 
 0
net45	文件: 
 0
zh-Hans	文件: 
System.Web.Razor.resources.dll
system.web.razor.xml
 2
Microsoft.AspNet.Web.Optimization.1.1.3	文件: 
.signature.p7s
Microsoft.AspNet.Web.Optimization.1.1.3.nupkg
 2
lib	文件: 
 0
net40	文件: 
System.Web.Optimization.dll
system.web.optimization.xml
 2
zh-Hans	文件: 
System.Web.Optimization.resources.dll
 1
Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3	文件: 
.signature.p7s
Microsoft.AspNet.Web.Optimization.zh-Hans.1.1.3.nupkg
 2
lib	文件: 
 0
net40	文件: 
 0
zh-Hans	文件: 
System.Web.Optimization.resources.dll
 1
Microsoft.AspNet.WebPages.3.2.7	文件: 
.signature.p7s
Microsoft.AspNet.WebPages.3.2.7.nupkg
 2
Content	文件: 
Web.config.install.xdt
Web.config.uninstall.xdt
 2
lib	文件: 
 0
net45	文件: 
System.Web.Helpers.dll
System.Web.Helpers.xml
System.Web.WebPages.Deployment.dll
System.Web.WebPages.Deployment.xml
System.Web.WebPages.dll
System.Web.WebPages.Razor.dll
System.Web.WebPages.Razor.xml
System.Web.WebPages.xml
 8
zh-Hans	文件: 
System.Web.Helpers.resources.dll
system.web.helpers.xml
System.Web.WebPages.Deployment.resources.dll
system.web.webpages.deployment.xml
System.Web.WebPages.Razor.resources.dll
system.web.webpages.razor.xml
System.Web.WebPages.resources.dll
system.web.webpages.xml
 8
Microsoft.AspNet.WebPages.zh-Hans.3.2.7	文件: 
.signature.p7s
Microsoft.AspNet.WebPages.zh-Hans.3.2.7.nupkg
 2
lib	文件: 
 0
net45	文件: 
 0
zh-Hans	文件: 
System.Web.Helpers.resources.dll
system.web.helpers.xml
System.Web.WebPages.Deployment.resources.dll
system.web.webpages.deployment.xml
System.Web.WebPages.Razor.resources.dll
system.web.webpages.razor.xml
System.Web.WebPages.resources.dll
system.web.webpages.xml
 8
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1	文件: 
.signature.p7s
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1.nupkg
 2
build	文件: 
 0
net45	文件: 
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props
 2
net46	文件: 
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props
 2
content	文件: 
 0
net45	文件: 
app.config.install.xdt
app.config.uninstall.xdt
web.config.install.xdt
web.config.uninstall.xdt
 4
net46	文件: 
app.config.install.xdt
app.config.uninstall.xdt
web.config.install.xdt
web.config.uninstall.xdt
 4
lib	文件: 
 0
net45	文件: 
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
 2
tools	文件: 
 0
net45	文件: 
install.ps1
uninstall.ps1
 2
Roslyn45	文件: 
csc.exe
csc.exe.config
csc.rsp
csi.exe
csi.rsp
Microsoft.Build.Tasks.CodeAnalysis.dll
Microsoft.CodeAnalysis.CSharp.dll
Microsoft.CodeAnalysis.CSharp.Scripting.dll
Microsoft.CodeAnalysis.dll
Microsoft.CodeAnalysis.Scripting.dll
Microsoft.CodeAnalysis.VisualBasic.dll
Microsoft.CSharp.Core.targets
Microsoft.DiaSymReader.Native.amd64.dll
Microsoft.DiaSymReader.Native.x86.dll
Microsoft.VisualBasic.Core.targets
System.AppContext.dll
System.Collections.Immutable.dll
System.Diagnostics.StackTrace.dll
System.IO.FileSystem.dll
System.IO.FileSystem.Primitives.dll
System.Reflection.Metadata.dll
vbc.exe
vbc.exe.config
vbc.rsp
VBCSCompiler.exe
VBCSCompiler.exe.config
 26
RoslynLatest	文件: 
csc.exe
csc.exe.config
csc.rsp
csi.exe
csi.exe.config
csi.rsp
Microsoft.Build.Tasks.CodeAnalysis.dll
Microsoft.CodeAnalysis.CSharp.dll
Microsoft.CodeAnalysis.CSharp.Scripting.dll
Microsoft.CodeAnalysis.dll
Microsoft.CodeAnalysis.Scripting.dll
Microsoft.CodeAnalysis.VisualBasic.dll
Microsoft.CSharp.Core.targets
Microsoft.DiaSymReader.Native.amd64.dll
Microsoft.DiaSymReader.Native.x86.dll
Microsoft.Managed.Core.targets
Microsoft.VisualBasic.Core.targets
Microsoft.Win32.Primitives.dll
System.AppContext.dll
System.Collections.Immutable.dll
System.Console.dll
System.Diagnostics.DiagnosticSource.dll
System.Diagnostics.FileVersionInfo.dll
System.Diagnostics.StackTrace.dll
System.Globalization.Calendars.dll
System.IO.Compression.dll
System.IO.Compression.ZipFile.dll
System.IO.FileSystem.dll
System.IO.FileSystem.Primitives.dll
System.Net.Http.dll
System.Net.Sockets.dll
System.Reflection.Metadata.dll
System.Runtime.InteropServices.RuntimeInformation.dll
System.Security.Cryptography.Algorithms.dll
System.Security.Cryptography.Encoding.dll
System.Security.Cryptography.Primitives.dll
System.Security.Cryptography.X509Certificates.dll
System.Text.Encoding.CodePages.dll
System.Threading.Tasks.Extensions.dll
System.ValueTuple.dll
System.Xml.ReaderWriter.dll
System.Xml.XmlDocument.dll
System.Xml.XPath.dll
System.Xml.XPath.XDocument.dll
vbc.exe
vbc.exe.config
vbc.rsp
VBCSCompiler.exe
VBCSCompiler.exe.config
 49
Microsoft.jQuery.Unobtrusive.Validation.3.2.11	文件: 
.signature.p7s
Microsoft.jQuery.Unobtrusive.Validation.3.2.11.nupkg
 2
Content	文件: 
 0
Scripts	文件: 
jquery.validate.unobtrusive.js
jquery.validate.unobtrusive.min.js
 2
Microsoft.Web.Infrastructure.1.0.0.0	文件: 
.signature.p7s
Microsoft.Web.Infrastructure.1.0.0.0.nupkg
 2
lib	文件: 
 0
net40	文件: 
Microsoft.Web.Infrastructure.dll
 1
Modernizr.2.8.3	文件: 
.signature.p7s
Modernizr.2.8.3.nupkg
 2
Content	文件: 
 0
Scripts	文件: 
modernizr-2.8.3.js
 1
Tools	文件: 
common.ps1
install.ps1
uninstall.ps1
 3
Newtonsoft.Json.12.0.2	文件: 
.signature.p7s
LICENSE.md
Newtonsoft.Json.12.0.2.nupkg
 3
lib	文件: 
 0
net20	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
net35	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
net40	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
net45	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
netstandard1.0	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
netstandard1.3	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
netstandard2.0	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
portable-net40+sl5+win8+wp8+wpa81	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
portable-net45+win8+wp8+wpa81	文件: 
Newtonsoft.Json.dll
Newtonsoft.Json.xml
 2
WebGrease.1.6.0	文件: 
.signature.p7s
WebGrease.1.6.0.nupkg
 2
lib	文件: 
WebGrease.dll
 1
tools	文件: 
WG.EXE
 1
Word	文件: 
精品文字分享网站4.zip
 1
精品文字分享网站4	文件: 
 0
ShaereArticle	文件: 
ShaereArticle.sln
 1
.vs	文件: 
 0
ShaereArticle	文件: 
 0
config	文件: 
applicationhost.config
 1
v16	文件: 
.suo
 1
BLL	文件: 
ArticleManager.cs
BLL.csproj
 2
bin	文件: 
 0
Debug	文件: 
BLL.dll
BLL.pdb
DAL.dll
DAL.pdb
Models.dll
Models.pdb
 6
Release	文件: 
 0
obj	文件: 
 0
Debug	文件: 
.NETFramework,Version=v4.6.1.AssemblyAttributes.cs
BLL.csproj.CopyComplete
BLL.csproj.CoreCompileInputs.cache
BLL.csproj.FileListAbsolute.txt
BLL.csprojAssemblyReference.cache
BLL.dll
BLL.pdb
DesignTimeResolveAssemblyReferencesInput.cache
 8
TempPE	文件: 
 0
Properties	文件: 
AssemblyInfo.cs
 1
DAL	文件: 
ArticleServer.cs
DAL.csproj
DBHelper.cs
 3
bin	文件: 
 0
Debug	文件: 
DAL.dll
DAL.pdb
Models.dll
Models.pdb
 4
Release	文件: 
 0
obj	文件: 
 0
Debug	文件: 
.NETFramework,Version=v4.6.1.AssemblyAttributes.cs
DAL.csproj.CopyComplete
DAL.csproj.CoreCompileInputs.cache
DAL.csproj.FileListAbsolute.txt
DAL.csprojAssemblyReference.cache
DAL.dll
DAL.pdb
DesignTimeResolveAssemblyReferencesInput.cache
 8
TempPE	文件: 
 0
Properties	文件: 
AssemblyInfo.cs
 1
Models	文件: 
Article.cs
Models.csproj
 2
bin	文件: 
 0
Debug	文件: 
Models.dll
Models.pdb
 2
Release	文件: 
 0
obj	文件: 
 0
Debug	文件: 
.NETFramework,Version=v4.6.1.AssemblyAttributes.cs
DesignTimeResolveAssemblyReferencesInput.cache
Models.csproj.CoreCompileInputs.cache
Models.csproj.FileListAbsolute.txt
Models.csprojAssemblyReference.cache
Models.dll
Models.pdb
 7
TempPE	文件: 
 0
Properties	文件: 
AssemblyInfo.cs
 1
packages	文件: 
 0
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1	文件: 
.signature.p7s
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.2.0.1.nupkg
 2
build	文件: 
 0
net45	文件: 
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props
 2
net46	文件: 
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.Extensions.props
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props
 2
content	文件: 
 0
net45	文件: 
app.config.install.xdt
app.config.uninstall.xdt
web.config.install.xdt
web.config.uninstall.xdt
 4
net46	文件: 
app.config.install.xdt
app.config.uninstall.xdt
web.config.install.xdt
web.config.uninstall.xdt
 4
lib	文件: 
 0
net45	文件: 
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
 2
tools	文件: 
 0
net45	文件: 
install.ps1
uninstall.ps1
 2
Roslyn45	文件: 
csc.exe
csc.exe.config
csc.rsp
csi.exe
csi.rsp
Microsoft.Build.Tasks.CodeAnalysis.dll
Microsoft.CodeAnalysis.CSharp.dll
Microsoft.CodeAnalysis.CSharp.Scripting.dll
Microsoft.CodeAnalysis.dll
Microsoft.CodeAnalysis.Scripting.dll
Microsoft.CodeAnalysis.VisualBasic.dll
Microsoft.CSharp.Core.targets
Microsoft.DiaSymReader.Native.amd64.dll
Microsoft.DiaSymReader.Native.x86.dll
Microsoft.VisualBasic.Core.targets
System.AppContext.dll
System.Collections.Immutable.dll
System.Diagnostics.StackTrace.dll
System.IO.FileSystem.dll
System.IO.FileSystem.Primitives.dll
System.Reflection.Metadata.dll
vbc.exe
vbc.exe.config
vbc.rsp
VBCSCompiler.exe
VBCSCompiler.exe.config
 26
RoslynLatest	文件: 
csc.exe
csc.exe.config
csc.rsp
csi.exe
csi.exe.config
csi.rsp
Microsoft.Build.Tasks.CodeAnalysis.dll
Microsoft.CodeAnalysis.CSharp.dll
Microsoft.CodeAnalysis.CSharp.Scripting.dll
Microsoft.CodeAnalysis.dll
Microsoft.CodeAnalysis.Scripting.dll
Microsoft.CodeAnalysis.VisualBasic.dll
Microsoft.CSharp.Core.targets
Microsoft.DiaSymReader.Native.amd64.dll
Microsoft.DiaSymReader.Native.x86.dll
Microsoft.Managed.Core.targets
Microsoft.VisualBasic.Core.targets
Microsoft.Win32.Primitives.dll
System.AppContext.dll
System.Collections.Immutable.dll
System.Console.dll
System.Diagnostics.DiagnosticSource.dll
System.Diagnostics.FileVersionInfo.dll
System.Diagnostics.StackTrace.dll
System.Globalization.Calendars.dll
System.IO.Compression.dll
System.IO.Compression.ZipFile.dll
System.IO.FileSystem.dll
System.IO.FileSystem.Primitives.dll
System.Net.Http.dll
System.Net.Sockets.dll
System.Reflection.Metadata.dll
System.Runtime.InteropServices.RuntimeInformation.dll
System.Security.Cryptography.Algorithms.dll
System.Security.Cryptography.Encoding.dll
System.Security.Cryptography.Primitives.dll
System.Security.Cryptography.X509Certificates.dll
System.Text.Encoding.CodePages.dll
System.Threading.Tasks.Extensions.dll
System.ValueTuple.dll
System.Xml.ReaderWriter.dll
System.Xml.XmlDocument.dll
System.Xml.XPath.dll
System.Xml.XPath.XDocument.dll
vbc.exe
vbc.exe.config
vbc.rsp
VBCSCompiler.exe
VBCSCompiler.exe.config
 49
ShaereArticle	文件: 
Default.aspx
Default.aspx.cs
Default.aspx.designer.cs
packages.config
ShaereArticle.csproj
ShaereArticle.csproj.user
Web.config
Web.Debug.config
Web.Release.config
 9
bin	文件: 
BLL.dll
BLL.pdb
DAL.dll
DAL.pdb
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll
Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml
Models.dll
Models.pdb
ShaereArticle.dll
ShaereArticle.dll.config
ShaereArticle.pdb
 11
roslyn	文件: 
csc.exe
csc.exe.config
csc.rsp
csi.exe
csi.exe.config
csi.rsp
Microsoft.Build.Tasks.CodeAnalysis.dll
Microsoft.CodeAnalysis.CSharp.dll
Microsoft.CodeAnalysis.CSharp.Scripting.dll
Microsoft.CodeAnalysis.dll
Microsoft.CodeAnalysis.Scripting.dll
Microsoft.CodeAnalysis.VisualBasic.dll
Microsoft.CSharp.Core.targets
Microsoft.DiaSymReader.Native.amd64.dll
Microsoft.DiaSymReader.Native.x86.dll
Microsoft.Managed.Core.targets
Microsoft.VisualBasic.Core.targets
Microsoft.Win32.Primitives.dll
System.AppContext.dll
System.Collections.Immutable.dll
System.Console.dll
System.Diagnostics.DiagnosticSource.dll
System.Diagnostics.FileVersionInfo.dll
System.Diagnostics.StackTrace.dll
System.Globalization.Calendars.dll
System.IO.Compression.dll
System.IO.Compression.ZipFile.dll
System.IO.FileSystem.dll
System.IO.FileSystem.Primitives.dll
System.Net.Http.dll
System.Net.Sockets.dll
System.Reflection.Metadata.dll
System.Runtime.InteropServices.RuntimeInformation.dll
System.Security.Cryptography.Algorithms.dll
System.Security.Cryptography.Encoding.dll
System.Security.Cryptography.Primitives.dll
System.Security.Cryptography.X509Certificates.dll
System.Text.Encoding.CodePages.dll
System.Threading.Tasks.Extensions.dll
System.ValueTuple.dll
System.Xml.ReaderWriter.dll
System.Xml.XmlDocument.dll
System.Xml.XPath.dll
System.Xml.XPath.XDocument.dll
vbc.exe
vbc.exe.config
vbc.rsp
VBCSCompiler.exe
VBCSCompiler.exe.config
 49
imgs	文件: 
av1.png
av2.png
 2
obj	文件: 
 0
Debug	文件: 
.NETFramework,Version=v4.6.1.AssemblyAttributes.cs
DesignTimeResolveAssemblyReferencesInput.cache
ShaereArticle.csproj.CopyComplete
ShaereArticle.csproj.CoreCompileInputs.cache
ShaereArticle.csproj.FileListAbsolute.txt
ShaereArticle.csprojAssemblyReference.cache
ShaereArticle.dll
ShaereArticle.pdb
 8
TempPE	文件: 
 0
Properties	文件: 
AssemblyInfo.cs
 1
数据库	文件: 
ArticleDB.mdf
ArticleDB_log.ldf
 2
文件: 
allcount:  43424

Process finished with exit code 0

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值