c# file or folder notification event -
i developing application invoke file created third party application, everytime file placed in default location defined third party application, want change default file location on fly, mean need event trigger before file has been created.
short answer: no, can't know without third-party provider help.
you seems looking indication file will be created. must check on third party application provider if offer hook event you're looking for, lots of business rules in place.
as workaround, can set filesystemwatcher object monitor default location and, if required, move created file more convenient location.
Comments
Post a Comment