Delphi TFileStream 열기 모드 및 공유 모드
3222 단어 Delphi
{ TFileStream create mode }
fmCreate = $FF00; { Create a file with the given name. If a file with the given name exists, open the file in write mode. }
fmExclusive = $0004; { when used with FileCreate, atomically creates the file only if it doesn't exist, fails otherwise }
fmOpenRead = $0000; { Open the file for reading only. }
fmOpenWrite = $0001; { Open the file for writing only. Writing to the file completely replaces the current contents. }
fmOpenReadWrite = $0002; { Open the file to modify the current contents rather than replace them. }
fmShareCompat = $0000 platform; { DOS compatibility mode is not portable, Sharing is compatible with the way FCBs are opened. }
fmShareExclusive = $0010; { Other applications can not open the file for any reason. }
fmShareDenyWrite = $0020; { Other applications can open the file for reading but not for writing. }
fmShareDenyRead = $0030 platform; { Other applications can open the file for writing but not for reading, write-only not supported on all platforms }
fmShareDenyNone = $0040; { No attempt is made to prevent other applications from reading from or writing to the file }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Delphi] TStringBuilder그리고 꼭 사용해야만 할까? 그림처럼 Heap 영역에 "Hello" 공간을 생성하고 포인팅을 한다. "Hello World" 공간을 새로 생성한 후 포인팅을 하게 된다. 결국 "Hello" 라는 String 객체가 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.