Files
netris-cdc-file-transfer/rm_bazel_out_dir.bat
Christian Schneider 4326e972ac Releasing the former Stadia file transfer tools
The tools allow efficient and fast synchronization of large directory
trees from a Windows workstation to a Linux target machine.

cdc_rsync* support efficient copy of files by using content-defined
chunking (CDC) to identify chunks within files that can be reused.

asset_stream_manager + cdc_fuse_fs support efficient streaming of a
local directory to a remote virtual file system based on FUSE. It also
employs CDC to identify and reuse unchanged data chunks.
2022-11-03 10:39:10 +01:00

35 lines
1.3 KiB
Batchfile

@REM
@REM Copyright 2022 Google LLC
@REM
@REM Licensed under the Apache License, Version 2.0 (the "License");
@REM you may not use this file except in compliance with the License.
@REM You may obtain a copy of the License at
@REM
@REM http://www.apache.org/licenses/LICENSE-2.0
@REM
@REM Unless required by applicable law or agreed to in writing, software
@REM distributed under the License is distributed on an "AS IS" BASIS,
@REM WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@REM See the License for the specific language governing permissions and
@REM limitations under the License.
@REM
@echo off
@REM Detects whether both /common and /bazel-out are regular directories and deletes /bazel-out if so.
set ROOT=%~dp0
@REM If common is a junction, we're probably in %USERPROFILE%\_bazel%USERNAME%\execroot\cdc_file_transfer.
@REM Things will work fine.
fsutil reparsepoint query %ROOT%\common > nul && exit /b 0
@REM If bazel-out is already a junction, we're probably in the regular root dir. Things will work fine.
if not exist %ROOT%\bazel-out (
exit /b 0
)
fsutil reparsepoint query %ROOT%\bazel-out > nul && exit /b 0
@REM bazel-out is not a junction, but it should be, so delete it
echo Deleting %ROOT%\bazel-out (probably autogenerated by VS, but Bazel wants it to be a junction)
rmdir /S /Q %ROOT%\bazel-out