zoukankan      html  css  js  c++  java
  • delphi TFileStream.create

    Value 

    Meaning 

    fmCreate  

    Create a file with the given name. If a file with the given name exists, open the file in write mode.  

    fmOpenRead  

    Open the file for reading only.  

    fmOpenWrite  

    Open the file for writing only. Writing to the file completely replaces the current contents.  

    fmOpenReadWrite  

    Open the file to modify the current contents rather than replace them.  

    fmShareCompat  

    Sharing is compatible with the way FCBs are opened.  

    fmShareExclusive  

    Other applications can not open the file for any reason.  

    fmShareDenyWrite  

    Other applications can open the file for reading but not for writing.  

    fmShareDenyRead  

    Other applications can open the file for writing but not for reading.  

    fmShareDenyNone  

    No attempt is made to prevent other applications from reading from or writing to the file.  

    The share mode must be one of the following values:

    Value 

    Meaning 

    fmShareCompat  

    Sharing is compatible with the way FCBs are opened.  

    fmShareExclusive  

    Other applications can not open the file for any reason.  

    fmShareDenyWrite  

    Other applications can open the file for reading but not for writing.  

    fmShareDenyRead  

    Other applications can open the file for writing but not for reading.  

    fmShareDenyNone  

    No attempt is made to prevent other applications from reading from or writing to the file.  

  • 相关阅读:
    用curl发起https请求
    curl: (60) SSL certificate problem: unable to get local issuer certificate 错误
    单例模式
    黑窗口命令
    推荐的php安全配置选项
    sublime配置大全
    数据库三范式最简单最易记的解释
    linux 下安装python3
    restframwork 接口及优化
    Django的orm练习---多表查询
  • 原文地址:https://www.cnblogs.com/Blogs-young-chan/p/4680100.html
Copyright © 2011-2022 走看看