haiou327: 这类的带点文件是怎么建立的?
这是你提供的程序的源码。
@shift 1
@echo off
color ac
title 文件(目录)删除程序BY haiou327
mode con lines=17 cols=50
echo Y|cacls \\?\%1 /T /C /P everyone:F >nul 2>nul
attrib -s -r h \\?\%1 >nul 2>nul
del /f /a /q \\?\%1 >nul 2>nul
rd /s /q \\?\%1 >nul 2>nul
echo.
echo ================================================
echo 文件(目录)删除程序
echo ================================================
echo By-haiou327 YY
echo.
echo.
echo 本程序支持畸形目录(文件)删除
echo.
echo 只须把要删除的文件或目录拖放到本程序图标上即可
echo.
echo
http://haiou327.myanyp.cn
echo.
echo QQ:52688226
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ping -n 8 127.1 >nul
=========================================
haiou327 第一句和 \\?\%1这句是什么意思,能解释下吗,
haiou327: How are such dot files created?
This is the source code of the program you provided.
@shift 1
@echo off
color ac
title File (Directory) Deletion Program BY haiou327
mode con lines=17 cols=50
echo Y|cacls \\?\%1 /T /C /P everyone:F >nul 2>nul
attrib -s -r h \\?\%1 >nul 2>nul
del /f /a /q \\?\%1 >nul 2>nul
rd /s /q \\?\%1 >nul 2>nul
echo.
echo ================================================
echo File (Directory) Deletion Program
echo ================================================
echo By-haiou327 YY
echo.
echo.
echo This program supports deletion of malformed directories (files)
echo.
echo Just drag the file or directory to be deleted onto the program icon
echo.
echo
http://haiou327.myanyp.cn
echo.
echo QQ:52688226
echo.
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ping -n 8 127.1 >nul
=========================================
haiou327 What does the first line and the \\?\%1 part mean, can you explain it?