[Solved] How open a hidden file in c++ programming?
[ad_1] You want the GetFileAttributes function. It will work for this. Reference link : GetFileAttributes. [ad_2] solved How open a hidden file in c++ programming?
[ad_1] You want the GetFileAttributes function. It will work for this. Reference link : GetFileAttributes. [ad_2] solved How open a hidden file in c++ programming?
[ad_1] I’m guessing the problem is that in your compiler char is signed (the standard allows it to be either signed or unsigned, it’s implementation-defined/specific). As such, whenever you convert chars that have bit 7 set to 1 (0x80 through 0xFF) into any larger integer type, it’s treated as a negative value and it gets … Read more