i've read everything i can locate and waded thru hundreds of messages but have not found an answer to this particular question...
how deep does the COPY command go with wildcards?
take a structure like this...
templates/subSilver/file1.foo
templates/subSilver/admin/file2.foo
templates/subSilver/images/file3.foo
is it sufficient to just
copy templates/subSilver/*.* to templates/subSilver/*.*
and be done with it? will COPY traverse the internal directory structure and (re)create it as needed?
"depth" of COPY?
- smithy_dll
- Registered User
- Posts: 461
- Joined: Tue Jan 08, 2002 6:27 am
- Location: Australia
- Contact:
Re: "depth" of COPY?
'*.*' matches "hello.dolly" and ".dolly" but not "hello" if that answers your question
'*' would match all of the above
As for the standard, the last should work, but I don't know personally how easyMOD has implemented it, sorry.
'*' would match all of the above
As for the standard, the last should work, but I don't know personally how easyMOD has implemented it, sorry.
phpBB, its open source, become involved, write a modification!
Modifications Database | MOD Development Forum Rules | MOD Studio
Re: "depth" of COPY?
Yes.
Works for all of the foo's . Just checked with a test MOD to be sure.
Code: Select all
copy templates/subSilver/*.* to templates/subSilver/*.*
How To Ask Questions The Smart Way.
ReadMe ver. 0.0.4 for EasyMOD ver. 0.3.0 (on-line at sourceforge)
Recent problems that are not answered in the ReadMe.
My page: DOM, Javascript, SQL - tips&scripts (mostly in Polish, sorry )
ReadMe ver. 0.0.4 for EasyMOD ver. 0.3.0 (on-line at sourceforge)
Recent problems that are not answered in the ReadMe.
My page: DOM, Javascript, SQL - tips&scripts (mostly in Polish, sorry )