1. 程式人生 > 資料庫 >MySQL 常用30種SQL查詢語句優化方法

MySQL 常用30種SQL查詢語句優化方法

技術標籤:Pythonpythonospycharmperformance無監督學習

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