BookmarkSubscribeRSS Feed
LineMoon
Lapis Lazuli | Level 10

Hello Experts,

In action 1 : I  zip a file  toto in  toto.zip

In action 2: I  unzip a file  toto.zip  in  test

Before doing the action 2, I would to check if the file toto.zip is not in use.

 

Thank you

 

 

 

4 REPLIES 4
ChrisNZ
Tourmaline | Level 20

The easiest way to do this is to try and rename the file. If the rename action works, then the file is not locked.

Another way is try and FOPEN() or MOPEN() the file.

Kurt_Bremser
Super User

@ChrisNZ wrote:

The easiest way to do this is to try and rename the file. If the rename action works, then the file is not locked.

Another way is try and FOPEN() or MOPEN() the file.


Won't work on UNIX. Since in UNIX, file metadata (location on disk, permissions, timestamps) is stored in the inode, and the filename(s) in the directories, a rename can be done while a file is in use. One can even remove (unlink) a file that is in use, something I use to avoid "file is locked by another user" issues.

In UNIX, one should use the fuser commandline tool to determine if processes have a file handle on the file (inode) in question.

ChrisNZ
Tourmaline | Level 20
@Kurt_Bremser I assume we have a windows user here, but you are right, Unix is different. The functions should work on unix too though, shouldn't they?
Kurt_Bremser
Super User

The functions will work on UNIX, but you would need to specify at least APPEND mode for FOPEN/MOPEN to force an error if the file is opened by another process.

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1660 views
  • 0 likes
  • 3 in conversation