麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 編程 > ASP > 正文

FileSystemObject 示例代碼_ASP教程

2024-07-21 02:04:57
字體:
來源:轉載
供稿:網友

推薦:如何制作登陸驗證頁面
用戶登錄驗證腳本,Chkpwd.asp 以下為引用的內容:% '=======用戶登錄驗證腳本======= '如果尚未定義Passed對象,則將其定義為false,表示沒有

在本節描述的示例代碼,提供真實的例子來示范在 FileSystemObject 對象模式中可用的許多功能。該代碼顯示了如何一起使用對象模式的所有功能,以及如何在您自己的代碼中有效地使用這些功能。

請注意,由于該代碼是極一般的,所以要使該代碼能夠真正在您的機器上運行,可能需要一些其他代碼和小小的變更。這些改變之所以必要,是因為在 Active Server Pages 和 Windows Scripting Host 之間,為輸入和輸出給用戶采用了不同的方法。

要在 Active Server Pages 上運行該代碼,則采取以下步驟:

創建一個標準的 Web 頁,后綴名為 .asp。
把下面的示例代碼復制到 <BODY>...</BODY> 標記之間的文件中。
把所有代碼封裝到 <%...%> 標記內。
把 Option Explicit 語句從當前位置移動到 HTML 頁的最頂部,甚至在 <HTML> 開始標記前。
把 <%...%> 標記放置在 Option Explicit 語句周圍,以保證它在服務器端運行。
把下面的代碼添加到示例代碼末尾:
Sub Print(x) Response.Write "<PRE><FONT face="宋體"" SIZE=""1"">" Response.Write x Response.Write "</FONT></PRE>" End Sub Main
前面的代碼增加一個將在服務器端運行,但在客戶端顯示結果的打印過程。要在 Windows Scripting Host 上運行該代碼,則把下面的代碼添加到示例代碼的末尾:
Sub Print(x) WScript.Echo x End Sub Main
下面就是示例代碼:

以下為引用的內容:

--------------------------------------------------------------------------------

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' FileSystemObject 示例代碼
'
'Copyright 1998 Microsoft Corporation。保留所有權利。
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Option Explicit

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'


' 對于代碼質量:
'
' 1) 下面的代碼有許多字符串操作,用&quot;&amp;&quot;運算符來把短字符串連接在一起。由于
' 字符串連接是費時的,所以這是一種低效率的寫代碼方法。無論如何,它是
' 一種非常好維護的寫代碼方法,并且在這兒使用了這種方法,因為該程序執行
' 大量的磁盤操作,而磁盤操作比連接字符串所需的內存操作要慢得多。
' 記住這是示范代碼,而不是產品代碼。
'
' 2) 使用了 &quot;Option Explicit&quot;,因為訪問聲明過的變量,比訪問未聲明的變量要
' 稍微快一些。它還能阻止在代碼中發生錯誤,例如,把 DriveTypeCDROM 誤拼
' 成了 DriveTypeCDORM 。
'
' 3) 為了使代碼更可讀,該代碼中沒有錯誤處理。雖然采取了防范措施,來保證代碼
' 在普通情況下沒有錯誤,但文件系統是不可預知的。在產品代碼中,使用
' On Error Resume Next 和 Err 對象來捕獲可能發生的錯誤。

以下為引用的內容:

'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' 一些容易取得的全局變量
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Dim TabStop
Dim NewLine

Const TestDrive = &quot;C&quot;
Const TestFilePath = &quot;C:Test&quot;

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' 由 Drive.DriveType 返回的常數
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Const DriveTypeRemovable = 1
Const DriveTypeFixed = 2
Const DriveTypeNetwork = 3
Const DriveTypeCDROM = 4
Const DriveTypeRAMDisk = 5

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' 由 File.Attributes 返回的常數
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Const FileAttrNormal = 0
Const FileAttrReadOnly = 1
Const FileAttrHidden = 2
Const FileAttrSystem = 4
Const FileAttrVolume = 8
Const FileAttrDirectory = 16
Const FileAttrArchive = 32
Const FileAttrAlias = 64
Const FileAttrCompressed = 128

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' 用來打開文件的常數
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Const OpenFileForReading = 1
Const OpenFileForWriting = 2
Const OpenFileForAppending = 8

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' ShowDriveType
'
' 目的:
'
' 生成一個字符串,來描述給定 Drive 對象的驅動器類型。
'
' 示范下面的內容
'
' - Drive.DriveType
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Function ShowDriveType(Drive)

Dim S

Select Case Drive.DriveType
Case DriveTypeRemovable
S = &quot;Removable&quot;
Case DriveTypeFixed
S = &quot;Fixed&quot;
Case DriveTypeNetwork
S = &quot;Network&quot;
Case DriveTypeCDROM
S = &quot;CD-ROM&quot;
Case DriveTypeRAMDisk
S = &quot;RAM Disk&quot;
Case Else
S = &quot;Unknown&quot;
End Select

ShowDriveType = S

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' ShowFileAttr
'
' 目的:
'
' 生成一個字符串,來描述文件或文件夾的屬性。
'
' 示范下面的內容
'
' - File.Attributes
' - Folder.Attributes
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Function ShowFileAttr(File) ' File 可以是文件或文件夾

Dim S
Dim Attr

Attr = File.Attributes

If Attr = 0 Then
ShowFileAttr = &quot;Normal&quot;
Exit Function
End If

If Attr And FileAttrDirectory Then S = S &amp; &quot;Directory &quot;
If Attr And FileAttrReadOnly Then S = S &amp; &quot;Read-Only &quot;
If Attr And FileAttrHidden Then S = S &amp; &quot;Hidden &quot;
If Attr And FileAttrSystem Then S = S &amp; &quot;System &quot;
If Attr And FileAttrVolume Then S = S &amp; &quot;Volume &quot;
If Attr And FileAttrArchive Then S = S &amp; &quot;Archive &quot;
If Attr And FileAttrAlias Then S = S &amp; &quot;Alias &quot;
If Attr And FileAttrCompressed Then S = S &amp; &quot;Compressed &quot;

ShowFileAttr = S

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' GenerateDriveInformation
'
' 目的:
'
' 生成一個字符串,來描述可用驅動器的當前狀態。
'
' 示范下面的內容
'
' - FileSystemObject.Drives
' - Iterating the Drives collection
' - Drives.Count
' - Drive.AvailableSpace
' - Drive.DriveLetter
' - Drive.DriveType
' - Drive.FileSystem
' - Drive.FreeSpace
' - Drive.IsReady
' - Drive.Path
' - Drive.SerialNumber
' - Drive.ShareName
' - Drive.TotalSize
' - Drive.VolumeName
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Function GenerateDriveInformation(FSO)

Dim Drives
Dim Drive
Dim S

Set Drives = FSO.Drives

S = &quot;Number of drives:&quot; &amp; TabStop &amp; Drives.Count &amp; NewLine &amp; NewLine

' 構造報告的第一行。
S = S &amp; String(2, TabStop) &amp; &quot;Drive&quot;
S = S &amp; String(3, TabStop) &amp; &quot;File&quot;
S = S &amp; TabStop &amp; &quot;Total&quot;
S = S &amp; TabStop &amp; &quot;Free&quot;
S = S &amp; TabStop &amp; &quot;Available&quot;
S = S &amp; TabStop &amp; &quot;Serial&quot; &amp; NewLine

' 構造報告的第二行。
S = S &amp; &quot;Letter&quot;
S = S &amp; TabStop &amp; &quot;Path&quot;
S = S &amp; TabStop &amp; &quot;Type&quot;
S = S &amp; TabStop &amp; &quot;Ready?&quot;
S = S &amp; TabStop &amp; &quot;Name&quot;
S = S &amp; TabStop &amp; &quot;System&quot;
S = S &amp; TabStop &amp; &quot;Space&quot;
S = S &amp; TabStop &amp; &quot;Space&quot;
S = S &amp; TabStop &amp; &quot;Space&quot;
S = S &amp; TabStop &amp; &quot;Number&quot; &amp; NewLine

' 分隔行。
S = S &amp; String(105, &quot;-&quot;) &amp; NewLine

For Each Drive In Drives

S = S &amp; Drive.DriveLetter
S = S &amp; TabStop &amp; Drive.Path
S = S &amp; TabStop &amp; ShowDriveType(Drive)
S = S &amp; TabStop &amp; Drive.IsReady

If Drive.IsReady Then
If DriveTypeNetwork = Drive.DriveType Then
S = S &amp; TabStop &amp; Drive.ShareName
Else
S = S &amp; TabStop &amp; Drive.VolumeName
End If

S = S &amp; TabStop &amp; Drive.FileSystem
S = S &amp; TabStop &amp; Drive.TotalSize
S = S &amp; TabStop &amp; Drive.FreeSpace
S = S &amp; TabStop &amp; Drive.AvailableSpace
S = S &amp; TabStop &amp; Hex(Drive.SerialNumber)

End If

S = S &amp; NewLine

Next

GenerateDriveInformation = S

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' GenerateFileInformation
'
' 目的:
'
' 生成一個字符串,來描述文件的當前狀態。
'
' 示范下面的內容
'
' - File.Path
' - File.Name
' - File.Type
' - File.DateCreated
' - File.DateLastAccessed
' - File.DateLastModified
' - File.Size
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Function GenerateFileInformation(File)

Dim S

S = NewLine &amp; &quot;Path:&quot; &amp; TabStop &amp; File.Path
S = S &amp; NewLine &amp; &quot;Name:&quot; &amp; TabStop &amp; File.Name
S = S &amp; NewLine &amp; &quot;Type:&quot; &amp; TabStop &amp; File.Type
S = S &amp; NewLine &amp; &quot;Attribs:&quot; &amp; TabStop &amp; ShowFileAttr(File)
S = S &amp; NewLine &amp; &quot;Created:&quot; &amp; TabStop &amp; File.DateCreated
S = S &amp; NewLine &amp; &quot;Accessed:&quot; &amp; TabStop &amp; File.DateLastAccessed
S = S &amp; NewLine &amp; &quot;Modified:&quot; &amp; TabStop &amp; File.DateLastModified
S = S &amp; NewLine &amp; &quot;Size&quot; &amp; TabStop &amp; File.Size &amp; NewLine

GenerateFileInformation = S

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' GenerateFolderInformation
'
' 目的:
'
' 生成一個字符串,來描述文件夾的當前狀態。
'
' 示范下面的內容
'
' - Folder.Path
' - Folder.Name
' - Folder.DateCreated
' - Folder.DateLastAccessed
' - Folder.DateLastModified
' - Folder.Size
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Function GenerateFolderInformation(Folder)

Dim S

S = &quot;Path:&quot; &amp; TabStop &amp; Folder.Path
S = S &amp; NewLine &amp; &quot;Name:&quot; &amp; TabStop &amp; Folder.Name
S = S &amp; NewLine &amp; &quot;Attribs:&quot; &amp; TabStop &amp; ShowFileAttr(Folder)
S = S &amp; NewLine &amp; &quot;Created:&quot; &amp; TabStop &amp; Folder.DateCreated
S = S &amp; NewLine &amp; &quot;Accessed:&quot; &amp; TabStop &amp; Folder.DateLastAccessed
S = S &amp; NewLine &amp; &quot;Modified:&quot; &amp; TabStop &amp; Folder.DateLastModified
S = S &amp; NewLine &amp; &quot;Size:&quot; &amp; TabStop &amp; Folder.Size &amp; NewLine

GenerateFolderInformation = S

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' GenerateAllFolderInformation
'
' 目的:
'
' 生成一個字符串,來描述一個文件夾和所有文件及子文件夾的當前狀態。
'
' 示范下面的內容
'
' - Folder.Path
' - Folder.SubFolders
' - Folders.Count
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Function GenerateAllFolderInformation(Folder)

Dim S
Dim SubFolders
Dim SubFolder
Dim Files
Dim File

S = &quot;Folder:&quot; &amp; TabStop &amp; Folder.Path &amp; NewLine &amp; NewLine

Set Files = Folder.Files

If 1 = Files.Count Then
S = S &amp; &quot;There is 1 file&quot; &amp; NewLine
Else
S = S &amp; &quot;There are &quot; &amp; Files.Count &amp; &quot; files&quot; &amp; NewLine
End If

If Files.Count &lt;&gt; 0 Then

For Each File In Files
S = S &amp; GenerateFileInformation(File)
Next

End If

Set SubFolders = Folder.SubFolders

If 1 = SubFolders.Count Then
S = S &amp; NewLine &amp; &quot;There is 1 sub folder&quot; &amp; NewLine &amp; NewLine
Else
S = S &amp; NewLine &amp; &quot;There are &quot; &amp; SubFolders.Count &amp; &quot; sub folders&quot; &amp; NewLine &amp; NewLine
End If

If SubFolders.Count &lt;&gt; 0 Then

For Each SubFolder In SubFolders
S = S &amp; GenerateFolderInformation(SubFolder)
Next

S = S &amp; NewLine

For Each SubFolder In SubFolders
S = S &amp; GenerateAllFolderInformation(SubFolder)
Next

End If

GenerateAllFolderInformation = S

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' GenerateTestInformation
'
' 目的:
'
' 生成一個字符串,來描述 C:Test 文件夾和所有文件及子文件夾的當前狀態。
'
' 示范下面的內容
'
' - FileSystemObject.DriveExists
' - FileSystemObject.FolderExists
' - FileSystemObject.GetFolder
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Function GenerateTestInformation(FSO)

Dim TestFolder
Dim S

If Not FSO.DriveExists(TestDrive) Then Exit Function
If Not FSO.FolderExists(TestFilePath) Then Exit Function

Set TestFolder = FSO.GetFolder(TestFilePath)

GenerateTestInformation = GenerateAllFolderInformation(TestFolder)

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' DeleteTestDirectory
'
' 目的:
'
' 清理 test 目錄。
'
' 示范下面的內容
'
' - FileSystemObject.GetFolder
' - FileSystemObject.DeleteFile
' - FileSystemObject.DeleteFolder
' - Folder.Delete
' - File.Delete
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub DeleteTestDirectory(FSO)

Dim TestFolder
Dim SubFolder
Dim File
<a name="DeleteFile">
' 有兩種方法可用來刪除文件:

FSO.DeleteFile(TestFilePath &amp; &quot;BeatlesOctopusGarden.txt&quot;)

Set File = FSO.GetFile(TestFilePath &amp; &quot;BeatlesBathroomWindow.txt&quot;)
File.Delete


' 有兩種方法可用來刪除文件夾:

FSO.DeleteFolder(TestFilePath &amp; &quot;Beatles&quot;)

FSO.DeleteFile(TestFilePath &amp; &quot;ReadMe.txt&quot;)

Set TestFolder = FSO.GetFolder(TestFilePath)
TestFolder.Delete

End Sub

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' CreateLyrics
'
' 目的:
'
' 在文件夾中創建兩個文本文件。
'
'
' 示范下面的內容
'
' - FileSystemObject.CreateTextFile
' - TextStream.WriteLine
' - TextStream.Write
' - TextStream.WriteBlankLines
' - TextStream.Close
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Sub CreateLyrics(Folder)

Dim TextStream
</a><a name="CreateTextFile">
Set TextStream = Folder.CreateTextFile(&quot;OctopusGarden.txt&quot;)
</a><a name="WriteToFile">
TextStream.Write(&quot;Octopus' Garden &quot;) ' 請注意,該語句不添加換行到文件中。
TextStream.WriteLine(&quot;(by Ringo Starr)&quot;)
TextStream.WriteBlankLines(1)
TextStream.WriteLine(&quot;I'd like to be under the sea in an octopus' garden in the shade,&quot;)
TextStream.WriteLine(&quot;He'd let us in, knows where we've been -- in his octopus' garden in the shade.&quot;)
TextStream.WriteBlankLines(2)
</a><a name="Close">
TextStream.Close

Set TextStream = Folder.CreateTextFile(&quot;BathroomWindow.txt&quot;)
TextStream.WriteLine(&quot;She Came In Through The Bathroom Window (by Lennon/McCartney)&quot;)
TextStream.WriteLine(&quot;&quot;)
TextStream.WriteLine(&quot;She came in through the bathroom window protected by a silver spoon&quot;)
TextStream.WriteLine(&quot;But now she sucks her thumb and wanders by the banks of her own lagoon&quot;)
TextStream.WriteBlankLines(2)
TextStream.Close

End Sub

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' GetLyrics
'
' 目的:
'
' 顯示 lyrics 文件的內容。
'
'
' 示范下面的內容
'
' - FileSystemObject.OpenTextFile
' - FileSystemObject.GetFile
' - TextStream.ReadAll
' - TextStream.Close
' - File.OpenAsTextStream
' - TextStream.AtEndOfStream
' - TextStream.ReadLine
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Function GetLyrics(FSO)

Dim TextStream
Dim S
Dim File

' 有多種方法可用來打開一個文本文件,和多種方法來從文件讀取數據。
' 這兒用了兩種方法來打開文件和讀取文件:

Set TextStream = FSO.OpenTextFile(TestFilePath &amp; &quot;BeatlesOctopusGarden.txt&quot;, OpenFileForReading)
</a><a name="ReadFromFile">
S = TextStream.ReadAll &amp; NewLine &amp; NewLine
TextStream.Close

Set File = FSO.GetFile(TestFilePath &amp; &quot;BeatlesBathroomWindow.txt&quot;)
Set TextStream = File.OpenAsTextStream(OpenFileForReading)
Do While Not TextStream.AtEndOfStream
S = S &amp; TextStream.ReadLine &amp; NewLine
Loop
TextStream.Close

GetLyrics = S

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' BuildTestDirectory
'
' 目的:
'
' 創建一個目錄分層結構來示范 FileSystemObject。
'
' 以這樣的次序來創建分層結構:
'
' C:Test
' C:TestReadMe.txt
' C:TestBeatles
' C:TestBeatlesOctopusGarden.txt
' C:TestBeatlesBathroomWindow.txt
'
'
' 示范下面的內容
'
' - FileSystemObject.DriveExists
' - FileSystemObject.FolderExists
' - FileSystemObject.CreateFolder
' - FileSystemObject.CreateTextFile
' - Folders.Add
' - Folder.CreateTextFile
' - TextStream.WriteLine
' - TextStream.Close
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
</a><a name="FolderInfo">
Function BuildTestDirectory(FSO)

Dim TestFolder
Dim SubFolders
Dim SubFolder
Dim TextStream

' 排除(a)驅動器不存在,或(b)要創建的目錄已經存在的情況。

If Not FSO.DriveExists(TestDrive) Then
BuildTestDirectory = False
Exit Function
End If

If FSO.FolderExists(TestFilePath) Then
BuildTestDirectory = False
Exit Function
End If

Set TestFolder = FSO.CreateFolder(TestFilePath)

Set TextStream = FSO.CreateTextFile(TestFilePath &amp; &quot;ReadMe.txt&quot;)
TextStream.WriteLine(&quot;My song lyrics collection&quot;)
TextStream.Close

Set SubFolders = TestFolder.SubFolders

Set SubFolder = SubFolders.Add(&quot;Beatles&quot;)

CreateLyrics SubFolder

BuildTestDirectory = True

End Function

''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
'
' 主程序
'
' 首先,它創建一個 test 目錄,以及一些子文件夾和文件。
' 然后,它轉儲有關可用磁盤驅動器和 test 目錄的某些信息,
' 最后,清除 test 目錄及其所有內容。
'
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''

Sub Main

Dim FSO

' 設立全局變量。
TabStop = Chr(9)
NewLine = Chr(10)
</a><a name="CreateFSO">
Set FSO = CreateObject(&quot;Scripting.FileSystemObject&quot;)

If Not BuildTestDirectory(FSO) Then
Print &quot;Test directory already exists or cannot be created. Cannot continue.&quot;
Exit Sub
End If

Print GenerateDriveInformation(FSO) &amp; NewLine &amp; NewLine

Print GenerateTestInformation(FSO) &amp; NewLine &amp; NewLine

Print GetLyrics(FSO) &amp; NewLine &amp; NewLine

DeleteTestDirectory(FSO)

End Sub

分享:解讀asp的RegExp對象正則表達式功能用法
RegExp對象提供簡單的正則表達式支持功能。 RegExp對象的用法: 以下為引用的內容: Function RegExpTest(patrn, strng) Dim re

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 亚洲黑人在线观看 | 视频一区二区三区视频 | jizzyouxxxx| 成人三级视频网站 | 欧美日韩大片在线观看 | 欧美精品18| 黄色18网站 | 国产毛片aaa一区二区三区视频 | 国产精品久久久久网站 | 欧洲成人一区 | 九九热精品免费视频 | 国产瑟瑟视频 | 久久久久久久一区二区 | 99精品国产成人一区二区 | 国语自产免费精品视频在 | 黄色av电影在线播放 | 美国黄色小视频 | 精国产品一区二区三区 | 在线a亚洲视频播放在线观看 | 国产亚洲精品久久久久久久久久 | 日韩精品中文字幕在线观看 | av免费在线网 | 色播一区 | 黄色毛片免费视频 | 成人国产精品一区二区毛片在线 | 中文字幕一区二区三区久久 | 午夜a狂野欧美一区二区 | 国产视频在线免费观看 | 精品亚洲二区 | 国产一级一片免费播放 | 玩偶姐姐在线观看免费 | 精品一区二区久久久久久按摩 | 精品一区二区三区在线观看国产 | 免费视频a | 久久丝袜脚交足黄网站免费 | 欧美精品一区二区中文字幕 | 国产1区在线 | 亚洲影视中文字幕 | 日本成年免费网站 | 成人免费视频视频在线观看 免费 | 欧美一级毛片一级毛片 |