Home > Mobile >  Set An Unknown Number of Variables That areParsed From Each Line of a Text File
Set An Unknown Number of Variables That areParsed From Each Line of a Text File

Time:11-12

Apologies for my poorly worded question and my scatterbrain workings. Essentially I want to set an unknown number of variables that are parsed from each line of a text file.

I have written batch file to create symbolic links for network shares to a C:\Volumes folder.

@echo off
echo:
set /p dest=ENTER FOLDER PATH: 
set dest="           
  • Related