Código
@echo off rem autoejecución del ciclo :return rem detector de unidades for %%u in (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, s, t, u, v, w, x, y, z) do ( dir /b %%u:\ > nul 2>&1 && ( echo Unidad "%%u:" detectada ) ) rem copiador de archivo if exist ("%%u:pepe/archivo.txt") ( start "%%u:pepe/archivo.txt" ) else ( MKDIR ["%%u:pepe/archivo.txt"] goto return echo hola )