本帖最后由 WHY 于 2018-11-12 11:25 编辑
分两个脚本,第一个脚本 test.bat,第二个脚本 test.ps1,
两个脚本存放于 E:\duanwenxue 目录下。
双击 test.bat 运行。
Test.bat- @echo off
- PowerShell -exec ByPass -f Test.ps1
- pause
复制代码 Test.ps1- $reg = '(?i)<div class="(?:sigle-)?breadcrumb">当前位置:\s*<a href=''/''>短篇原创文学</a>>.*<a href=''/([^'']+)/''>[^<>]*</a>';
- $MyPath = $MyInvocation.MyCommand.Path -replace '[^\\]+$';
-
- ForEach ($file In (dir -Literal $MyPath -Filter *.html -Recurse)) {
- $s = [IO.File]::ReadAllText($file.FullName, [Text.Encoding]::Default);
- $m = [regex]::Matches($s, $reg);
- $arr = @($m | %{$_.Groups[1].Value});
- If ($arr.Count -ne 1) { continue; }
- $fd = $MyPath + ($arr[0] -replace '/', '\');
- If ($file.FullName -NotLike ($fd + '\*')) {
- If (!(Test-Path -Literal $fd)) { $null = md $fd; }
- move -Literal $file.FullName -Dest $fd -Force;
- }
- }
复制代码 看了下,短文周刊 网页不太一样,多了个 “sigle-”。 |