华域联盟 DOS/BAT Xcopy命令参数使用介绍

Xcopy命令参数使用介绍

目录

XCOPY是COPY的扩展,可以把指定的目录连文件和目录结构一并拷贝,但不能拷贝系统文件;使用时源盘符、源目标路径名、源文件名至少指定一个;选用/S时对源目录下及其子目录下的所有文件进行COPY。除非指定/E参数,否则/S不会拷贝空目录,若不指定/S参数,则XCOPY只拷贝源目录本身的文件,而不涉及其下的子目录;选用/V参数时,对的拷贝的扇区都进行较验,但速度会降低。

我们不可数典忘祖,该学习的还是要学习,不该忘记的还是不能忘记,尤其是DOS批处理命令,在开发软件或项目的时候,都离不开这些基本的原始的命令。本文,我们来学习Xcopy的参数及实例

一、Xcopy参数介绍

  命令格式:XCOPY source [destination] 一堆可选的参数
  参数介绍
  source 指定要复制的文件。
  destination 指定新文件的位置和/或名称。
  /A 只复制有存档属性集的文件, 但不改变属性。
  /M 只复制有存档属性集的文件, 并关闭存档属性。
  /D:m-d-y 复制在指定日期或指定日期以后改变的文件。如果没有提供日期,只复制那些源时间比目标时间新的文件。
  /EXCLUDE:file1[+file2][+file3]...
  指定含有字符串的文件列表。如果有任何字符串与要被复制的文件的绝对路径相符,那个文件将不会得到复制。
  例如,指定如 \obj\ 或 .obj 的字符串会排除目录 obj 下面的所有文件或带有 .obj 扩展名的文件。
  /P 创建每个目标文件前提示。
  /S 复制目录和子目录,除了空的。
  /E 复制目录和子目录,包括空的。 与 /S /E 相同。可以用来修改 /T。
  /V 验证每个新文件。
  /W 提示您在复制前按键。
  /C 即使有错误,也继续复制。
  /I 如果目标不存在,又在复制一个以上的文件, 则假定目标一定是一个目录。
  /Q 复制时不显示文件名。
  /F 复制时显示完整的源和目标文件名。
  /L 显示要复制的文件。
  /G 允许将没有经过加密的文件复制到不支持加密的目标。
  /H 也复制隐藏和系统文件。
  /R 改写只读文件。
  /T 创建目录结构,但不复制文件。不包括空目录或子目录。/T /E 包括空目录和子目录。
  /U 只复制已经存在于目标中的文件。
  /K 复制属性。一般的 Xcopy 会重设只读属性。
  /N 用生成的短名复制。
  /O 复制文件所有权和 ACL 信息。
  /X 复制文件审核设置(隐含 /O)。
  /Y 禁止提示以确认改写一个现存目标文件。
  /-Y 导致提示以确认改写一个现存目标文件。
  /Z 用重新启动模式复制网络文件。

二、Xcopy命令实例介绍

1、本机复制文件或文件夹的实例

Xcopy d:\UpdateFiles e:\123  /s /e /y

  命令解释:将D盘的UpdateFiles文件夹中包含的所有东西,全部复制到E盘的123文件夹内;/s /e /y 参数说明:在复制文件的同时也复制空目录或子目录,如果目标路径已经有相同文件了,使用覆盖方式而不进行提示。

2、在局域网中的应用实例

Xcopy \\192.168.0.168\UpdateFiles e:\123  /s /e /y

  命令解释:将192.168.0.168这台计算机的名称为UpdateFiles的文件夹内的所有东西,全部复制到本机的e:\123 文件夹;参数说明:在复制文件的同时也复制空目录或子目录,如果目标路径已经有相同文件了,使用覆盖方式而不进行提示。

3、结合/d标签,实现只复制比目标文件新的文件

假如现在c:\a文件夹下的所有文件和d:\a下的文件相同(修改日期及内容)

c:\a下的一个文件被别人修改了或者添加了一个文件!
能否写个bat,判断一下c:\a文件夹下的每个文件的最后修改日期是不是在前两天内!如果是,则复制到d:\a下的相应目录(要是原来有,则覆盖),如果不是,则不复制了.

@echo off 
echo y|xcopy c:\a /d /e /r /k d:\a\ 
pause 

经测试如果目标文件与源文件相同则不复制。确实一定程度了减少了对硬盘的读写。

4、移动A目录的所有文件到B目录

 移动A目录的所有文件到B目录,且保留A目录的目录结构;如果A下面有子目录,则在B中也创建相同目录,并把对应目录的文件移动到B的相同目录结构位置;(不移动系统文件和隐藏文件)

@echo off
rem 复制指定目录的目录结构到目标目录,并移动的文件到目标目录,且保留目录结构(空目录也复制),不保留系统文件和隐藏文件
set ObjPath=\2.168.1.186\Temp Files\技术部\BPD\sourceFiles\ZOFUND
set DestPath=E:\EastFax\FFPsourceFiles\sourceFiles\ZOFUND
set DestExt=* 
xcopy /e /c /y "%ObjPath%\%DestExt%" "%DestPath%"
del /a /s /q /f "%ObjPath%\"

5、xcopy 排除文件拷贝

@echo off
::xcopy /y /s /e /I /exclude:uncopy.txt E:\NetWorkCMDA\CMDA0418\Portals
@echo off
::xcopy /y /s /e /I /exclude:uncopy.txt E:\NetWorkCMDA\CMDA0418\Portals\0 E:\Mu\Portals\0
::xcopy /y /s /e /I /exclude:uncopy.txt C:\Docume~1\wangchao\桌面\MyTest C:\Docume~1\wangchao\桌面\aaa
echo 返回默认情况下应用程序存储数据的位置=%APPDATA%
echo 返回当前目录字符串=%CD%
echo 返回计算机的名称=%COMPUTERNAME% 
echo 返回命令行解释器可执行程序的准确路径=%COMSPEC% 
echo 返回当前登录的用户的名称=%USERNAME%
echo 返回包含用户帐户的域的名称=%USERDOMAIN%
echo 返回当前用户的配置文件的位置=%USERPROFILE%
set myExist=%windir%\TestUncopy
set myCommand=%windir%\TestUncopy&echo TestUncopy
if not exist %myExist% mkdir %myCommand%
set myExist1=%windir%\TestUncopy\a
set myCommand1=%windir%\TestUncopy\a&echo TestUncopy\a
if not exist %myExist1% mkdir %myCommand1%
set myExist2=%windir%\TestUncopy\aa
set myCommand2=%windir%\TestUncopy\aa&echo TestUncopy\aa
if not exist %myExist2% mkdir %myCommand2%
set myExist3=%windir%\TestUncopy\a\b
set myCommand3=%windir%\TestUncopy\a\b&echo TestUncopy\a\b
if not exist %myExist3% mkdir %myCommand3%
set myExist4=%windir%\TestUncopySource
set myCommand4=%windir%\TestUncopySource&echo TestUncopySource
if not exist %myExist4% mkdir %myCommand4%
set myExist5=%windir%\TestUncopy\aaa
set myCommand5=%windir%\TestUncopy\aaa&echo TestUncopy\aaa
if not exist %myExist5% mkdir %myCommand5%
set copyFile=%windir%\system\COMMDLG.DLL
if not exist %myExist1%\m1.dll copy  %copyFile% %myExist1% /y
if not exist %myExist2%\m2.dll copy  %copyFile% %myExist2% /y
if not exist %myExist3%\m3.dll copy  %copyFile% %myExist3% /y
if not exist %myExist5%\m5.dll copy  %copyFile% %myExist5% /y
if not exist %myExist1%\m1.dll ren  %myExist1%\COMMDLG.DLL m1.dll
if not  exist %myExist2%\m2.dll ren  %myExist2%\COMMDLG.DLL m2.dll
if not  exist %myExist3%\m3.dll ren  %myExist3%\COMMDLG.DLL m3.dll
if not  exist %myExist5%\m5.dll ren  %myExist5%\COMMDLG.DLL m5.dll
if not exist %myExist5%\txt1.exe copy  %windir%\system32\notepad.exe %myExist5% /y
if not exist %myExist5%\txt1.exe ren  %myExist5%\notepad.exe txt1.exe
if not exist %myExist5%\txt2.exe copy  %windir%\system32\notepad.exe %myExist5% /y
if not exist %myExist5%\txt2.exe ren  %myExist5%\notepad.exe txt2.exe
if not exist %myExist5%\txt3.exe copy  %windir%\system32\notepad.exe %myExist5% /y
if not exist %myExist5%\txt3.exe ren  %myExist5%\notepad.exe txt3.exe
set OutFile=uncopy.txt
::MyDir=\aa\ 排除的文件夹
::MySubDir=\a\b\ 排除的子文件夹
::MyFile=m3.dll 排除的文件
::set MyFile1=.exe 排除的类型文件
set MyDir=\aa\
set MySubDir=\a\b\
set MyFile=m3.dll
set MyFile1=.exe
echo %MyDir% >uncopy.txt
echo %MySubDir% >>uncopy.txt
echo %MyFile% >>uncopy.txt
echo %MyFile1% >>uncopy.txt
xcopy /y /s /e /I /exclude:uncopy.txt %windir%\TestUncopy %windir%\TestUncopySource
::if exist %windir%\TestUncopy del %windir%\TestUncopy /s /q&rd %windir%\TestUncopy /s /q &echo del_rd %windir%\TestUncopy
::if exist %windir%\TestUncopySource del %windir%\TestUncopySource /s /q&rd %windir%\TestUncopySource /s /q &echo del_rd %windir%\TestUncopySource
::del uncopy.txt
start %myExist%
start %myExist4%
echo 是否删除(Y/N)
set /p shuru=
::if %shuru:~0,1%==y (echo %shuru:~0,1%&goto del)
::if %shuru:~0,1%==Y (echo %shuru:~0,1%&goto del)
::if %shuru:~0,1%==n (echo %shuru:~0,1%&goto End)
::if %shuru:~0,1%==N (echo %shuru:~0,1%&goto End)  
if %shuru:~0,1%==y (cls&goto del)
if %shuru:~0,1%==Y (cls&goto del)
if %shuru:~0,1%==n (cls&goto End)
if %shuru:~0,1%==N (cls&goto End)  
pause
:del
if exist %windir%\TestUncopy del %windir%\TestUncopy /s /q&rd %windir%\TestUncopy /s /q &echo del_rd %windir%\TestUncopy
if exist %windir%\TestUncopySource del %windir%\TestUncopySource /s /q&rd %windir%\TestUncopySource /s /q &echo del_rd %windir%\TestUncopySource
if exist uncopy.txt del uncopy.txt
:End
echo.& ::换行
echo 操作已经完成
timeout /t 3 /nobreak
cls
echo 是否重新调用(Y/N)--Y:调用 N:退出
set /p shuru=
if %shuru:~0,1%==y (cls&goto MyCall)
if %shuru:~0,1%==Y (cls&goto MyCall)
if %shuru:~0,1%==n (cls&goto EndExit)
if %shuru:~0,1%==N (cls&goto EndExit) 
:EndExit
exit 
:MyCall
uncopy.bat
pause
E:\Mu\Portals
@echo off
::xcopy /y /s /e /I /exclude:uncopy.txt E:\NetWorkCMDA\CMDA0418\Portals\0 E:\Mu\Portals\0
::xcopy /y /s /e /I /exclude:uncopy.txt C:\Docume~1\wangchao\桌面\MyTest C:\Docume~1\wangchao\桌面\aaa
echo 返回默认情况下应用程序存储数据的位置=%APPDATA%
echo 返回当前目录字符串=%CD%
echo 返回计算机的名称=%COMPUTERNAME% 
echo 返回命令行解释器可执行程序的准确路径=%COMSPEC% 
echo 返回当前登录的用户的名称=%USERNAME%
echo 返回包含用户帐户的域的名称=%USERDOMAIN%
echo 返回当前用户的配置文件的位置=%USERPROFILE%
set myExist=%windir%\TestUncopy
set myCommand=%windir%\TestUncopy&echo TestUncopy
if not exist %myExist% mkdir %myCommand%
set myExist1=%windir%\TestUncopy\a
set myCommand1=%windir%\TestUncopy\a&echo TestUncopy\a
if not exist %myExist1% mkdir %myCommand1%
set myExist2=%windir%\TestUncopy\aa
set myCommand2=%windir%\TestUncopy\aa&echo TestUncopy\aa
if not exist %myExist2% mkdir %myCommand2%
set myExist3=%windir%\TestUncopy\a\b
set myCommand3=%windir%\TestUncopy\a\b&echo TestUncopy\a\b
if not exist %myExist3% mkdir %myCommand3%
set myExist4=%windir%\TestUncopySource
set myCommand4=%windir%\TestUncopySource&echo TestUncopySource
if not exist %myExist4% mkdir %myCommand4%
set myExist5=%windir%\TestUncopy\aaa
set myCommand5=%windir%\TestUncopy\aaa&echo TestUncopy\aaa
if not exist %myExist5% mkdir %myCommand5%
set copyFile=%windir%\system\COMMDLG.DLL
if not exist %myExist1%\m1.dll copy  %copyFile% %myExist1% /y
if not exist %myExist2%\m2.dll copy  %copyFile% %myExist2% /y
if not exist %myExist3%\m3.dll copy  %copyFile% %myExist3% /y
if not exist %myExist5%\m5.dll copy  %copyFile% %myExist5% /y
if not exist %myExist1%\m1.dll ren  %myExist1%\COMMDLG.DLL m1.dll
if not  exist %myExist2%\m2.dll ren  %myExist2%\COMMDLG.DLL m2.dll
if not  exist %myExist3%\m3.dll ren  %myExist3%\COMMDLG.DLL m3.dll
if not  exist %myExist5%\m5.dll ren  %myExist5%\COMMDLG.DLL m5.dll
if not exist %myExist5%\txt1.exe copy  %windir%\system32\notepad.exe %myExist5% /y
if not exist %myExist5%\txt1.exe ren  %myExist5%\notepad.exe txt1.exe
if not exist %myExist5%\txt2.exe copy  %windir%\system32\notepad.exe %myExist5% /y
if not exist %myExist5%\txt2.exe ren  %myExist5%\notepad.exe txt2.exe
if not exist %myExist5%\txt3.exe copy  %windir%\system32\notepad.exe %myExist5% /y
if not exist %myExist5%\txt3.exe ren  %myExist5%\notepad.exe txt3.exe
set OutFile=uncopy.txt
::MyDir=\aa\ 排除的文件夹
::MySubDir=\a\b\ 排除的子文件夹
::MyFile=m3.dll 排除的文件
::set MyFile1=.exe 排除的类型文件
set MyDir=\aa\
set MySubDir=\a\b\
set MyFile=m3.dll
set MyFile1=.exe
echo %MyDir% >uncopy.txt
echo %MySubDir% >>uncopy.txt
echo %MyFile% >>uncopy.txt
echo %MyFile1% >>uncopy.txt
xcopy /y /s /e /I /exclude:uncopy.txt %windir%\TestUncopy %windir%\TestUncopySource
::if exist %windir%\TestUncopy del %windir%\TestUncopy /s /q&rd %windir%\TestUncopy /s /q &echo del_rd %windir%\TestUncopy
::if exist %windir%\TestUncopySource del %windir%\TestUncopySource /s /q&rd %windir%\TestUncopySource /s /q &echo del_rd %windir%\TestUncopySource
::del uncopy.txt
start %myExist%
start %myExist4%
echo 是否删除(Y/N)
set /p shuru=
::if %shuru:~0,1%==y (echo %shuru:~0,1%&goto del)
::if %shuru:~0,1%==Y (echo %shuru:~0,1%&goto del)
::if %shuru:~0,1%==n (echo %shuru:~0,1%&goto End)
::if %shuru:~0,1%==N (echo %shuru:~0,1%&goto End)  
if %shuru:~0,1%==y (cls&goto del)
if %shuru:~0,1%==Y (cls&goto del)
if %shuru:~0,1%==n (cls&goto End)
if %shuru:~0,1%==N (cls&goto End)  
pause
:del
if exist %windir%\TestUncopy del %windir%\TestUncopy /s /q&rd %windir%\TestUncopy /s /q &echo del_rd %windir%\TestUncopy
if exist %windir%\TestUncopySource del %windir%\TestUncopySource /s /q&rd %windir%\TestUncopySource /s /q &echo del_rd %windir%\TestUncopySource
if exist uncopy.txt del uncopy.txt
:End
echo.& ::换行
echo 操作已经完成
timeout /t 3 /nobreak
cls
echo 是否重新调用(Y/N)--Y:调用 N:退出
set /p shuru=
if %shuru:~0,1%==y (cls&goto MyCall)
if %shuru:~0,1%==Y (cls&goto MyCall)
if %shuru:~0,1%==n (cls&goto EndExit)
if %shuru:~0,1%==N (cls&goto EndExit) 
:EndExit
exit 
:MyCall
uncopy.bat
pause
::xcopy /y /s /e /I /exclude:uncopy.txt C:\Docume~1\wangchao\桌面\MyTest C:\Docume~1\wangchao\桌面\aaa echo 返回默认情况下应用程序存储数据的位置=%APPDATA% echo 返回当前目录字符串=%CD% echo 返回计算机的名称=%COMPUTERNAME% echo 返回命令行解释器可执行程序的准确路径=%COMSPEC% echo 返回当前登录的用户的名称=%USERNAME% echo 返回包含用户帐户的域的名称=%USERDOMAIN% echo 返回当前用户的配置文件的位置=%USERPROFILE% set myExist=%windir%\TestUncopy set myCommand=%windir%\TestUncopy&echo TestUncopy if not exist %myExist% mkdir %myCommand% set myExist1=%windir%\TestUncopy\a set myCommand1=%windir%\TestUncopy\a&echo TestUncopy\a if not exist %myExist1% mkdir %myCommand1% set myExist2=%windir%\TestUncopy\aa set myCommand2=%windir%\TestUncopy\aa&echo TestUncopy\aa if not exist %myExist2% mkdir %myCommand2% set myExist3=%windir%\TestUncopy\a\b set myCommand3=%windir%\TestUncopy\a\b&echo TestUncopy\a\b if not exist %myExist3% mkdir %myCommand3% set myExist4=%windir%\TestUncopySource set myCommand4=%windir%\TestUncopySource&echo TestUncopySource if not exist %myExist4% mkdir %myCommand4% set myExist5=%windir%\TestUncopy\aaa set myCommand5=%windir%\TestUncopy\aaa&echo TestUncopy\aaa if not exist %myExist5% mkdir %myCommand5% set copyFile=%windir%\system\COMMDLG.DLL if not exist %myExist1%\m1.dll copy %copyFile% %myExist1% /y if not exist %myExist2%\m2.dll copy %copyFile% %myExist2% /y if not exist %myExist3%\m3.dll copy %copyFile% %myExist3% /y if not exist %myExist5%\m5.dll copy %copyFile% %myExist5% /y if not exist %myExist1%\m1.dll ren %myExist1%\COMMDLG.DLL m1.dll if not exist %myExist2%\m2.dll ren %myExist2%\COMMDLG.DLL m2.dll if not exist %myExist3%\m3.dll ren %myExist3%\COMMDLG.DLL m3.dll if not exist %myExist5%\m5.dll ren %myExist5%\COMMDLG.DLL m5.dll if not exist %myExist5%\txt1.exe copy %windir%\system32\notepad.exe %myExist5% /y if not exist %myExist5%\txt1.exe ren %myExist5%\notepad.exe txt1.exe if not exist %myExist5%\txt2.exe copy %windir%\system32\notepad.exe %myExist5% /y if not exist %myExist5%\txt2.exe ren %myExist5%\notepad.exe txt2.exe if not exist %myExist5%\txt3.exe copy %windir%\system32\notepad.exe %myExist5% /y if not exist %myExist5%\txt3.exe ren %myExist5%\notepad.exe txt3.exe set OutFile=uncopy.txt ::MyDir=\aa\ 排除的文件夹 ::MySubDir=\a\b\ 排除的子文件夹 ::MyFile=m3.dll 排除的文件 ::set MyFile1=.exe 排除的类型文件 set MyDir=\aa\ set MySubDir=\a\b\ set MyFile=m3.dll set MyFile1=.exe echo %MyDir% >uncopy.txt echo %MySubDir% >>uncopy.txt echo %MyFile% >>uncopy.txt echo %MyFile1% >>uncopy.txt xcopy /y /s /e /I /exclude:uncopy.txt %windir%\TestUncopy %windir%\TestUncopySource ::if exist %windir%\TestUncopy del %windir%\TestUncopy /s /q&rd %windir%\TestUncopy /s /q &echo del_rd %windir%\TestUncopy ::if exist %windir%\TestUncopySource del %windir%\TestUncopySource /s /q&rd %windir%\TestUncopySource /s /q &echo del_rd %windir%\TestUncopySource ::del uncopy.txt start %myExist% start %myExist4% echo 是否删除(Y/N) set /p shuru= ::if %shuru:~0,1%==y (echo %shuru:~0,1%&goto del) ::if %shuru:~0,1%==Y (echo %shuru:~0,1%&goto del) ::if %shuru:~0,1%==n (echo %shuru:~0,1%&goto End) ::if %shuru:~0,1%==N (echo %shuru:~0,1%&goto End) if %shuru:~0,1%==y (cls&goto del) if %shuru:~0,1%==Y (cls&goto del) if %shuru:~0,1%==n (cls&goto End) if %shuru:~0,1%==N (cls&goto End) pause :del if exist %windir%\TestUncopy del %windir%\TestUncopy /s /q&rd %windir%\TestUncopy /s /q &echo del_rd %windir%\TestUncopy if exist %windir%\TestUncopySource del %windir%\TestUncopySource /s /q&rd %windir%\TestUncopySource /s /q &echo del_rd %windir%\TestUncopySource if exist uncopy.txt del uncopy.txt :End echo.& ::换行 echo 操作已经完成 timeout /t 3 /nobreak cls echo 是否重新调用(Y/N)--Y:调用 N:退出 set /p shuru= if %shuru:~0,1%==y (cls&goto MyCall) if %shuru:~0,1%==Y (cls&goto MyCall) if %shuru:~0,1%==n (cls&goto EndExit) if %shuru:~0,1%==N (cls&goto EndExit) :EndExit exit :MyCall uncopy.bat pause

6、xcopy与EXCLUDE参数的用法

示例一:例如,我要将"WebAppBuytoy"目录备份一份到"WebAppBuytoy_bak",但要排除其下面的
"WebAppBuytoy\product\ProdImages"子目录,因为它太大且没有变化没有必要备份.

步骤一,新建一个文本文件叫"EXCLUDE.txt",内容如下:

product\ProdImages

步骤二,命令(包含子目录,不提示覆盖):

xcopy WebAppBuytoy WebAppBuytoy_bak /e /EXCLUDE:EXCLUDE.txt /y

示例二: 发布.net的Web项目批处理

deploy_web.cmd

xcopy G:\WebSites\BuytoySolutionV2\WebAppBuytoy web /EXCLUDE:web_exclude.txt /i /e /y
@rem 将排除的*.css文件补回
xcopy G:\WebSites\BuytoySolutionV2\WebAppBuytoy\App_Themes web\App_Themes /i /e /y
@pause

web_exclude.txt:

.cs
.vb
.pdb
.csproj
.csproj.user
.Publish.xml
.___
.cmd
.rar
\App_Themes\Theme1
\App_Themes\Theme1\
\obj
\obj\
\Properties
\Properties\
\App_Data\
\App_Classes\

示例三: 发布.net的Web项目批处理,但排除商品图片目录,因为它太大且不常更新,

重复使用上面那个排除文件“web_exclude.txt”,再加一个排除商品图片的排除文件
“web_exclude_prodImages.txt”,这样要在一个命令中使用多个排除文件列表,用到加号“+”:

deploy_web_排除商品图片.cmd

xcopy G:\WebSites\BuytoySolutionV2\WebAppBuytoy web 
/EXCLUDE:web_exclude.txt+web_exclude_prodImages.txt /i /e /y
@rem 将排除的*.css文件补回
xcopy G:\WebSites\BuytoySolutionV2\WebAppBuytoy\App_Themes web\App_Themes /i /e /y
@pause

web_exclude_prodImages.txt

\product\ProdImages
\product\ProdImages\

到此这篇关于Xcopy命令参数使用介绍的文章就介绍到这了,更多相关Xcopy内容请搜索华域联盟以前的文章或继续浏览下面的相关文章希望大家以后多多支持华域联盟!

您可能感兴趣的文章:

本文由 华域联盟 原创撰写:华域联盟 » Xcopy命令参数使用介绍

转载请保留出处和原文链接:https://www.cnhackhy.com/17690.htm

本文来自网络,不代表华域联盟立场,转载请注明出处。

作者: sterben

发表回复

联系我们

联系我们

2551209778

在线咨询: QQ交谈

邮箱: [email protected]

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部