Folder Icon Change

前端 未结 3 792
既然无缘
既然无缘 2020-12-18 08:34

I am changing the folder icons with c# function. Its working fine but the problem is its working for first time. I mean I am not able to change the icon for the folder for w

3条回答
  •  南方客
    南方客 (楼主)
    2020-12-18 09:02

    Just change

    UInt32 FCS_WRITE = FCS_READ | FCS_FORCEWRITE;
    

    to

    UInt32 FCS_WRITE = FCS_FORCEWRITE;
    

    When you run next time the FCS_WRITE = FCS_READ, so it wont write agian.

提交回复
热议问题