MS Word corrupt files on MyCloud when retrieved

MS Word corrupt files on MyCloud when retrieved.

e.g.

secondary files backed up by MyCloud

Files are stored with the latest file but also with secondary backed older files up by MyCloud 

So that older files can be retrieved if needed, before any editing has taken place, a mistake in the latest file has happened.

These are given a ~  (a tilde), character at the start of the file name on MyCloud e.g.

~$ad glass as 3D printing build platform.docx

When retrieveding these files MS Word does not open them, MS Word returns and error even if the tilde character is changed to a normal character.

Is there a fix?

 

Those are not backup files, and they don’t stand alone.

http://www.howtogeek.com/186204/why-does-microsoft-word-create-two-copies-while-in-use/

I have created a DOS Batch file to remove these files

@ECHO OFF
CLS
TITLE tilde MyCloud delete
ECHO.
ECHO tilde MyCloud delete
REM tilde ~ delete
ECHO.
ECHO ###########################
ECHO # #
ECHO # WAIT WORKING !! #
ECHO # #
ECHO # Deleting tilde deep !!! #
ECHO # #
ECHO ###########################
ECHO.
ECHO Notes:
ECHO.
ECHO Will create temporary Z drive to map network files to
ECHO This Z drive will be unlinked on finish
ECHO.
ECHO This may not remove any deep or long filenames
ECHO.
ECHO WAIT WORKING !!
ECHO.
REM Map network files to z drive
net use Z: \WDMYCLOUD\SmartWare >NUL
pushd Z: >NUL
REM: Use Mapped Z drive
Z:
cd “WD Smartware.swstor”
cd MSHOME
REM Look see DIR ~. /s/p
REM error too long filenames messages be Quiet
REM Hide errors 2>NUL
del ~. /s/Q >NUL 2>NUL
REM remove Z mapped drive
net use Z: /delete /y
C:
ECHO.
ECHo Finished
ECHO.
ECHO.
PAUSE