Q&A

  • 파일 속성을 직접 바꾸는 방법을 알고 싶습니다.
속성이 <읽기 전용>만 표시되어 있는 파일이 있습니다.



즉, 탐색기에서 파일을 대고 마우스 오른쪽 버튼을 눌러 등록 정보를 볼때 속성이 4가지가 있는데



그 4개중에 <읽기 전용>만 표시된 것을 말합니다.



그 파일을 읽기전용 모드를 해제하고 쓰기모드로 바꾸고 싶으면



어떤 작업을 해야 하는지 매우 궁금합니다.



** 답변은 빠를수록 좋습니다.^^ **

1  COMMENTS
  • Profile
    aha 2001.02.01 17:51
    안녕하세요 아하입니다.



    FileSetAttr()이 있습니다.



    아래내용은 도움말의 원문입니다.



    Sets the file attributes of a specified file.



    function FileSetAttr(const FileName: string; Attr: Integer): Integer;



    Description



    FileSetAttr sets the file attributes of the file given by FileName to the value given by Attr. The value of Attr is formed by combining the appropriate file attribute constants, as in the following:



    FileSetAttr('MyFile.sys', faReadOnly or faSysFile);



    FileSetAttr returns zero if the function was successful. Otherwise the return value is a Windows error code.



    Note: See TSearchRec for a description of the file attribute constants.



    그럼, 후다다닥~~

    i believe i can fly~~