A family of Microsoft word processing software products for creating web, email, and print documents.
The file hierarchy is something like this...
New Listing Creation
- Residential
- *Template Files
- **Data Source.xlsx
- **Document.docx
- *New Listing Name
- **New - Data Source.xlsx
- **New - Document.docx
- New Listing.bat (copies template files /renames into new folder)
Trying to get that the references to the Data Source to be "Residential / New Listing Name / New Listing Data Source" and not the original reference to "Residential / Template Files / Data Source"
EDIT: It removed my tabs.
EDIT2:
Batch script below if it helps.
@echo off
set /p Name=Enter The Property Address:
cd "Residential"
md "%Name%"
xcopy "Template Files" "%Name%" /E
cd "%Name%"
rename "Document.docx" "%Name% - Document.doc"
rename "Data Source.xlsx" "%Name% - Data Source.xlsx"
@echo New Directory "%Name%" Created.
start " " ""