TXT파일을 만들어 폴더에 넣어줄때..
그 폴더에 이름이 똑같은 TXT파일이 있을땐..
음. 예를 들어...
오널날짜..로 TXT파일명을 부여한다 할때..
1A0709.TXT <------ 이거와 같이 저장이 되었습니다..
근데.. 똑같은 날짜에 TXT파일을 만들 경우..
2A0709.TXT 라고 1값씩을 더해줘서 파일명을 주려면 어케해야 하나여??
3A0709.TXT....
xsfname := 'C:신고납 프로젝트BarReaderTXTDATA' + '1A' + copy(formatdatetime('yyyymmdd', DateTimePicker1.datetime),5,2) + copy(formatdatetime('yyyymmdd', DateTimePicker1.datetime),7,2)+ '.txt';
이부분을 어떻게 고쳐야 하는지.. 흐미..
아시는분~~~~~~~~~~~~~
function RenameFile(const OldName, NewName: string): Boolean;
Description
RenameFile attempts to change the name of the file specified by OldFile to NewFile. If the operation succeeds, RenameFile returns True. If it cannot rename the file (for example, if a file called NewName already exists), it returns False.