コード例 #1
0
        public static bool renameDirectory(string sourceDirPath, string destDirPath, string lastWriteTime)
        {
            connectServer();
            byte[] message = MessageAssembler.renameDirectory(sourceDirPath, destDirPath, lastWriteTime);
            VerifyHandler.postMessage(clientSocket, message);

            if (!VerifyHandler.verify(clientSocket))
            {
                return(false);
            }
            return(true);
        }