Batch file to copy files from a folder which contain values (anywhere in the filename) read from LIST.TXT?
This seems an easy task, but I cannot seem to work it out.
I have a LIST.TXT file with as follows:
123456
555789
8888988898
12125
I have a large volume of files with those numbers at the start of their file names:
123456_wedding1.jpg
123456_wedding2.doc
123456_wedding3.xls
555789_henrysales_horse.jpg
555789_goodtimes.mov
8888988898_33.avi
12125_some long description here.asx
12125_shor desc.asx
12125_shor desc2.xlsx
I declare vairables: theList, theSource & theDestination and I simply want to copy the files to theDestination folder (I don't even need subfolders).
Following is the code I attempted to adapt from other kind folk:
REM @ECHO OFF
REM **************************************************
REM Adjust location of list
SET "theList=C:2. ListList.txt"
REM Source dir
SET "theSource=C:2. Files"
REM Target dir
SET "theDestination=C:2. Found"
REM **************************************************
FOR /F "tokens=1,* delims=|" %%A IN (%theList%) DO (
ECHO.
ECHO %%A - %%B
CALL :copy "%%A - %%B"
)
ECHO.
ECHO Done^!
PAUSE
EXIT
:copy
FOR /R "%theSource%" %%F IN (*) DO (
ECHO "%%~nF" | FINDSTR /C:%1 >nul && COPY "%%~fF" "%theDestination%%%~nxF" && EXIT /B
)
pause
EXIT /B
However, I am still getting this error:
The system cannot find the file C:2..
It seems to be something to do with spaces in the files or folders, but I can't nut it out.
Your would be assistance greatly appreciated
batch-file path
add a comment |
This seems an easy task, but I cannot seem to work it out.
I have a LIST.TXT file with as follows:
123456
555789
8888988898
12125
I have a large volume of files with those numbers at the start of their file names:
123456_wedding1.jpg
123456_wedding2.doc
123456_wedding3.xls
555789_henrysales_horse.jpg
555789_goodtimes.mov
8888988898_33.avi
12125_some long description here.asx
12125_shor desc.asx
12125_shor desc2.xlsx
I declare vairables: theList, theSource & theDestination and I simply want to copy the files to theDestination folder (I don't even need subfolders).
Following is the code I attempted to adapt from other kind folk:
REM @ECHO OFF
REM **************************************************
REM Adjust location of list
SET "theList=C:2. ListList.txt"
REM Source dir
SET "theSource=C:2. Files"
REM Target dir
SET "theDestination=C:2. Found"
REM **************************************************
FOR /F "tokens=1,* delims=|" %%A IN (%theList%) DO (
ECHO.
ECHO %%A - %%B
CALL :copy "%%A - %%B"
)
ECHO.
ECHO Done^!
PAUSE
EXIT
:copy
FOR /R "%theSource%" %%F IN (*) DO (
ECHO "%%~nF" | FINDSTR /C:%1 >nul && COPY "%%~fF" "%theDestination%%%~nxF" && EXIT /B
)
pause
EXIT /B
However, I am still getting this error:
The system cannot find the file C:2..
It seems to be something to do with spaces in the files or folders, but I can't nut it out.
Your would be assistance greatly appreciated
batch-file path
There is an edit link below your post (and a delete link) :) I've fixed it for you ...
– DavidPostill♦
Jan 5 at 9:30
1
Your List.txt file seems to have only one number per line, but you try to parse two delimited by a verticval bar? Passing this to the :copy subroutine with a trailing space dash space won't find any correspondent file as they start with number underscore.
– LotPings
Jan 6 at 20:46
add a comment |
This seems an easy task, but I cannot seem to work it out.
I have a LIST.TXT file with as follows:
123456
555789
8888988898
12125
I have a large volume of files with those numbers at the start of their file names:
123456_wedding1.jpg
123456_wedding2.doc
123456_wedding3.xls
555789_henrysales_horse.jpg
555789_goodtimes.mov
8888988898_33.avi
12125_some long description here.asx
12125_shor desc.asx
12125_shor desc2.xlsx
I declare vairables: theList, theSource & theDestination and I simply want to copy the files to theDestination folder (I don't even need subfolders).
Following is the code I attempted to adapt from other kind folk:
REM @ECHO OFF
REM **************************************************
REM Adjust location of list
SET "theList=C:2. ListList.txt"
REM Source dir
SET "theSource=C:2. Files"
REM Target dir
SET "theDestination=C:2. Found"
REM **************************************************
FOR /F "tokens=1,* delims=|" %%A IN (%theList%) DO (
ECHO.
ECHO %%A - %%B
CALL :copy "%%A - %%B"
)
ECHO.
ECHO Done^!
PAUSE
EXIT
:copy
FOR /R "%theSource%" %%F IN (*) DO (
ECHO "%%~nF" | FINDSTR /C:%1 >nul && COPY "%%~fF" "%theDestination%%%~nxF" && EXIT /B
)
pause
EXIT /B
However, I am still getting this error:
The system cannot find the file C:2..
It seems to be something to do with spaces in the files or folders, but I can't nut it out.
Your would be assistance greatly appreciated
batch-file path
This seems an easy task, but I cannot seem to work it out.
I have a LIST.TXT file with as follows:
123456
555789
8888988898
12125
I have a large volume of files with those numbers at the start of their file names:
123456_wedding1.jpg
123456_wedding2.doc
123456_wedding3.xls
555789_henrysales_horse.jpg
555789_goodtimes.mov
8888988898_33.avi
12125_some long description here.asx
12125_shor desc.asx
12125_shor desc2.xlsx
I declare vairables: theList, theSource & theDestination and I simply want to copy the files to theDestination folder (I don't even need subfolders).
Following is the code I attempted to adapt from other kind folk:
REM @ECHO OFF
REM **************************************************
REM Adjust location of list
SET "theList=C:2. ListList.txt"
REM Source dir
SET "theSource=C:2. Files"
REM Target dir
SET "theDestination=C:2. Found"
REM **************************************************
FOR /F "tokens=1,* delims=|" %%A IN (%theList%) DO (
ECHO.
ECHO %%A - %%B
CALL :copy "%%A - %%B"
)
ECHO.
ECHO Done^!
PAUSE
EXIT
:copy
FOR /R "%theSource%" %%F IN (*) DO (
ECHO "%%~nF" | FINDSTR /C:%1 >nul && COPY "%%~fF" "%theDestination%%%~nxF" && EXIT /B
)
pause
EXIT /B
However, I am still getting this error:
The system cannot find the file C:2..
It seems to be something to do with spaces in the files or folders, but I can't nut it out.
Your would be assistance greatly appreciated
batch-file path
batch-file path
edited Jan 5 at 9:29
DavidPostill♦
105k25227262
105k25227262
asked Jan 5 at 8:41
juzzlejuzzle
194
194
There is an edit link below your post (and a delete link) :) I've fixed it for you ...
– DavidPostill♦
Jan 5 at 9:30
1
Your List.txt file seems to have only one number per line, but you try to parse two delimited by a verticval bar? Passing this to the :copy subroutine with a trailing space dash space won't find any correspondent file as they start with number underscore.
– LotPings
Jan 6 at 20:46
add a comment |
There is an edit link below your post (and a delete link) :) I've fixed it for you ...
– DavidPostill♦
Jan 5 at 9:30
1
Your List.txt file seems to have only one number per line, but you try to parse two delimited by a verticval bar? Passing this to the :copy subroutine with a trailing space dash space won't find any correspondent file as they start with number underscore.
– LotPings
Jan 6 at 20:46
There is an edit link below your post (and a delete link) :) I've fixed it for you ...
– DavidPostill♦
Jan 5 at 9:30
There is an edit link below your post (and a delete link) :) I've fixed it for you ...
– DavidPostill♦
Jan 5 at 9:30
1
1
Your List.txt file seems to have only one number per line, but you try to parse two delimited by a verticval bar? Passing this to the :copy subroutine with a trailing space dash space won't find any correspondent file as they start with number underscore.
– LotPings
Jan 6 at 20:46
Your List.txt file seems to have only one number per line, but you try to parse two delimited by a verticval bar? Passing this to the :copy subroutine with a trailing space dash space won't find any correspondent file as they start with number underscore.
– LotPings
Jan 6 at 20:46
add a comment |
2 Answers
2
active
oldest
votes
Would PowerShell be an option for this? This seems like a better tool for the job and would certainly make it simpler. For example, the bones of the solution could be:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
Get-ChildItem $theSource | Foreach-Object{
if($toCheck -match $_.BaseName)
{
write-host "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
}
This will just copy the file. If you want to move it consider using move-item.
If you really want sub-strings of the base file name to match entries in the list file, a verbose way, to make it readable and for you to modify or extend, the following could help:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
function inArrayasSub([string]$stringToCheck)
{
write-host "`tchecking: '$($stringToCheck)' exists (substring) in file " $theList
foreach ($entry in $toCheck)
{
if ($stringToCheck -match $entry)
{
write-host "`tExists based on entry: $entry"
return $true
}
}
return $false
}
Get-ChildItem $theSource | Foreach-Object{
write-host "Testing file basename: "$_.BaseName
if (inArrayasSub $_.BaseName)
{
write-host $_.BaseName "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
write-host "======================"
}
Thank you @HelpingHand! Would PowerShell be an option for this? I am not averse to PowerShell (especially since I've now worked out how to launch them from a bat file) - thank you, I will give that a go. a verbose way .. the following could help I will also look at this option. Thanks again
– juzzle
Jan 9 at 5:46
add a comment |
Batch file which:
- splits all files from the source at the underscore
- uses findstr /G: to compare the splitted number with theList
- if the number is present copy else echo message
Untested:
:: Q:Test201916SU_1390824.cmd
@ECHO OFF
:: Adjust location of list
Set "theList=C:2. ListList.txt"
:: Source dir
Set "theSource=C:2. Files"
:: Target dir
Set "theDestination=C:2. Found"
For /R "%theSource%" %%A IN (*) DO For /F "delims=_" %%B in ("%%~nA") DO (
ECHO:%%B|FINDSTR /XG:"%theList%" >nul 2>&1 && (
COPY "%%~fA" "%theDestination%%%~nxA"
)||(
Echo Not in theList: %%B , %%A
)
)
Echo Done^!
Pause
Exit /B
thany you so much for your help - I'll try this out.
– juzzle
Jan 9 at 5:51
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1390824%2fbatch-file-to-copy-files-from-a-folder-which-contain-values-anywhere-in-the-fil%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Would PowerShell be an option for this? This seems like a better tool for the job and would certainly make it simpler. For example, the bones of the solution could be:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
Get-ChildItem $theSource | Foreach-Object{
if($toCheck -match $_.BaseName)
{
write-host "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
}
This will just copy the file. If you want to move it consider using move-item.
If you really want sub-strings of the base file name to match entries in the list file, a verbose way, to make it readable and for you to modify or extend, the following could help:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
function inArrayasSub([string]$stringToCheck)
{
write-host "`tchecking: '$($stringToCheck)' exists (substring) in file " $theList
foreach ($entry in $toCheck)
{
if ($stringToCheck -match $entry)
{
write-host "`tExists based on entry: $entry"
return $true
}
}
return $false
}
Get-ChildItem $theSource | Foreach-Object{
write-host "Testing file basename: "$_.BaseName
if (inArrayasSub $_.BaseName)
{
write-host $_.BaseName "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
write-host "======================"
}
Thank you @HelpingHand! Would PowerShell be an option for this? I am not averse to PowerShell (especially since I've now worked out how to launch them from a bat file) - thank you, I will give that a go. a verbose way .. the following could help I will also look at this option. Thanks again
– juzzle
Jan 9 at 5:46
add a comment |
Would PowerShell be an option for this? This seems like a better tool for the job and would certainly make it simpler. For example, the bones of the solution could be:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
Get-ChildItem $theSource | Foreach-Object{
if($toCheck -match $_.BaseName)
{
write-host "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
}
This will just copy the file. If you want to move it consider using move-item.
If you really want sub-strings of the base file name to match entries in the list file, a verbose way, to make it readable and for you to modify or extend, the following could help:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
function inArrayasSub([string]$stringToCheck)
{
write-host "`tchecking: '$($stringToCheck)' exists (substring) in file " $theList
foreach ($entry in $toCheck)
{
if ($stringToCheck -match $entry)
{
write-host "`tExists based on entry: $entry"
return $true
}
}
return $false
}
Get-ChildItem $theSource | Foreach-Object{
write-host "Testing file basename: "$_.BaseName
if (inArrayasSub $_.BaseName)
{
write-host $_.BaseName "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
write-host "======================"
}
Thank you @HelpingHand! Would PowerShell be an option for this? I am not averse to PowerShell (especially since I've now worked out how to launch them from a bat file) - thank you, I will give that a go. a verbose way .. the following could help I will also look at this option. Thanks again
– juzzle
Jan 9 at 5:46
add a comment |
Would PowerShell be an option for this? This seems like a better tool for the job and would certainly make it simpler. For example, the bones of the solution could be:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
Get-ChildItem $theSource | Foreach-Object{
if($toCheck -match $_.BaseName)
{
write-host "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
}
This will just copy the file. If you want to move it consider using move-item.
If you really want sub-strings of the base file name to match entries in the list file, a verbose way, to make it readable and for you to modify or extend, the following could help:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
function inArrayasSub([string]$stringToCheck)
{
write-host "`tchecking: '$($stringToCheck)' exists (substring) in file " $theList
foreach ($entry in $toCheck)
{
if ($stringToCheck -match $entry)
{
write-host "`tExists based on entry: $entry"
return $true
}
}
return $false
}
Get-ChildItem $theSource | Foreach-Object{
write-host "Testing file basename: "$_.BaseName
if (inArrayasSub $_.BaseName)
{
write-host $_.BaseName "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
write-host "======================"
}
Would PowerShell be an option for this? This seems like a better tool for the job and would certainly make it simpler. For example, the bones of the solution could be:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
Get-ChildItem $theSource | Foreach-Object{
if($toCheck -match $_.BaseName)
{
write-host "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
}
This will just copy the file. If you want to move it consider using move-item.
If you really want sub-strings of the base file name to match entries in the list file, a verbose way, to make it readable and for you to modify or extend, the following could help:
$theList = "C:2. ListList.txt"
$theSource = "C:2. Files"
$theDestination = "C:2. Found"
$toCheck = gc $theList
function inArrayasSub([string]$stringToCheck)
{
write-host "`tchecking: '$($stringToCheck)' exists (substring) in file " $theList
foreach ($entry in $toCheck)
{
if ($stringToCheck -match $entry)
{
write-host "`tExists based on entry: $entry"
return $true
}
}
return $false
}
Get-ChildItem $theSource | Foreach-Object{
write-host "Testing file basename: "$_.BaseName
if (inArrayasSub $_.BaseName)
{
write-host $_.BaseName "matches in list file $($theList):" $_.FullName
copy-item $_.FullName -destination $theDestination
}
write-host "======================"
}
edited Jan 5 at 16:19
answered Jan 5 at 15:28
HelpingHandHelpingHand
1,00549
1,00549
Thank you @HelpingHand! Would PowerShell be an option for this? I am not averse to PowerShell (especially since I've now worked out how to launch them from a bat file) - thank you, I will give that a go. a verbose way .. the following could help I will also look at this option. Thanks again
– juzzle
Jan 9 at 5:46
add a comment |
Thank you @HelpingHand! Would PowerShell be an option for this? I am not averse to PowerShell (especially since I've now worked out how to launch them from a bat file) - thank you, I will give that a go. a verbose way .. the following could help I will also look at this option. Thanks again
– juzzle
Jan 9 at 5:46
Thank you @HelpingHand! Would PowerShell be an option for this? I am not averse to PowerShell (especially since I've now worked out how to launch them from a bat file) - thank you, I will give that a go. a verbose way .. the following could help I will also look at this option. Thanks again
– juzzle
Jan 9 at 5:46
Thank you @HelpingHand! Would PowerShell be an option for this? I am not averse to PowerShell (especially since I've now worked out how to launch them from a bat file) - thank you, I will give that a go. a verbose way .. the following could help I will also look at this option. Thanks again
– juzzle
Jan 9 at 5:46
add a comment |
Batch file which:
- splits all files from the source at the underscore
- uses findstr /G: to compare the splitted number with theList
- if the number is present copy else echo message
Untested:
:: Q:Test201916SU_1390824.cmd
@ECHO OFF
:: Adjust location of list
Set "theList=C:2. ListList.txt"
:: Source dir
Set "theSource=C:2. Files"
:: Target dir
Set "theDestination=C:2. Found"
For /R "%theSource%" %%A IN (*) DO For /F "delims=_" %%B in ("%%~nA") DO (
ECHO:%%B|FINDSTR /XG:"%theList%" >nul 2>&1 && (
COPY "%%~fA" "%theDestination%%%~nxA"
)||(
Echo Not in theList: %%B , %%A
)
)
Echo Done^!
Pause
Exit /B
thany you so much for your help - I'll try this out.
– juzzle
Jan 9 at 5:51
add a comment |
Batch file which:
- splits all files from the source at the underscore
- uses findstr /G: to compare the splitted number with theList
- if the number is present copy else echo message
Untested:
:: Q:Test201916SU_1390824.cmd
@ECHO OFF
:: Adjust location of list
Set "theList=C:2. ListList.txt"
:: Source dir
Set "theSource=C:2. Files"
:: Target dir
Set "theDestination=C:2. Found"
For /R "%theSource%" %%A IN (*) DO For /F "delims=_" %%B in ("%%~nA") DO (
ECHO:%%B|FINDSTR /XG:"%theList%" >nul 2>&1 && (
COPY "%%~fA" "%theDestination%%%~nxA"
)||(
Echo Not in theList: %%B , %%A
)
)
Echo Done^!
Pause
Exit /B
thany you so much for your help - I'll try this out.
– juzzle
Jan 9 at 5:51
add a comment |
Batch file which:
- splits all files from the source at the underscore
- uses findstr /G: to compare the splitted number with theList
- if the number is present copy else echo message
Untested:
:: Q:Test201916SU_1390824.cmd
@ECHO OFF
:: Adjust location of list
Set "theList=C:2. ListList.txt"
:: Source dir
Set "theSource=C:2. Files"
:: Target dir
Set "theDestination=C:2. Found"
For /R "%theSource%" %%A IN (*) DO For /F "delims=_" %%B in ("%%~nA") DO (
ECHO:%%B|FINDSTR /XG:"%theList%" >nul 2>&1 && (
COPY "%%~fA" "%theDestination%%%~nxA"
)||(
Echo Not in theList: %%B , %%A
)
)
Echo Done^!
Pause
Exit /B
Batch file which:
- splits all files from the source at the underscore
- uses findstr /G: to compare the splitted number with theList
- if the number is present copy else echo message
Untested:
:: Q:Test201916SU_1390824.cmd
@ECHO OFF
:: Adjust location of list
Set "theList=C:2. ListList.txt"
:: Source dir
Set "theSource=C:2. Files"
:: Target dir
Set "theDestination=C:2. Found"
For /R "%theSource%" %%A IN (*) DO For /F "delims=_" %%B in ("%%~nA") DO (
ECHO:%%B|FINDSTR /XG:"%theList%" >nul 2>&1 && (
COPY "%%~fA" "%theDestination%%%~nxA"
)||(
Echo Not in theList: %%B , %%A
)
)
Echo Done^!
Pause
Exit /B
answered Jan 6 at 21:08
LotPingsLotPings
4,8711722
4,8711722
thany you so much for your help - I'll try this out.
– juzzle
Jan 9 at 5:51
add a comment |
thany you so much for your help - I'll try this out.
– juzzle
Jan 9 at 5:51
thany you so much for your help - I'll try this out.
– juzzle
Jan 9 at 5:51
thany you so much for your help - I'll try this out.
– juzzle
Jan 9 at 5:51
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1390824%2fbatch-file-to-copy-files-from-a-folder-which-contain-values-anywhere-in-the-fil%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
There is an edit link below your post (and a delete link) :) I've fixed it for you ...
– DavidPostill♦
Jan 5 at 9:30
1
Your List.txt file seems to have only one number per line, but you try to parse two delimited by a verticval bar? Passing this to the :copy subroutine with a trailing space dash space won't find any correspondent file as they start with number underscore.
– LotPings
Jan 6 at 20:46