Modify ↓
Opened 16 years ago
Closed 16 years ago
#559 closed Bug (No Bug)
FileCopy does not work when there is a file exist with the same name of the "dest dir"
Reported by: | anonymous | Owned by: | |
---|---|---|---|
Milestone: | Component: | AutoIt | |
Version: | 3.2.12.1 | Severity: | None |
Keywords: | Cc: |
Description
FileCopy does not work when there is a file exist with the same name of the "dest dir"
code:
FileCopy("c:\aaa\*.txt", "c:\bbb", 9)
the file "c:\bbb"(not dir) is already exist
then FileCopy does not work.
Attachments (0)
Change History (2)
comment:1 Changed 16 years ago by Xenobiologist
comment:2 Changed 16 years ago by Jpm
- Resolution set to No Bug
- Status changed from new to closed
It can't work as *.txt is referencing a group of files that cannot be copied in a file Whatever you use the override/creation dir flag.
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
Hi,
I guess you are trying to copy more than one file into one destination file and that won't work.
Mega