4

私は Motorola MC67 を使用しています (問題はわかりませんが、ポータブル デバイスです)。そこにファイルを移動するためのバッチ スクリプトを作成したいと考えています。問題は、マウントされておらず、マウントできないため、デバイスパスを呼び出すことができないことです。Windows GUI からではなくデバイスへのアクセスについて、Google で何も見つかりませんでした。ActiveSync がポータブル デバイスから同期できる場所を読んだことがありますが、それは役に立ちません。とにかく、繰り返しますが、ファイルを自分のコンピュータからマウントされていないポータブル デバイスに移動する方法が必要です。バッチファイルからアクセスできるので、デバイスをマウントする方法も良いでしょう

4

3 に答える 3

7

まず、 Windows Mobile Developer Power Toysをダウンロードする必要がありますcecopy。これは、このソリューションが依存するユーティリティが含まれているためです。

基本的に、必要なことは次のとおりです。

cecopy file.exe dev:\file.exe

ここに cecopy の readme があります。

INSTRUCTIONS:
Usage:  CeCopy  [options] <Source_FileSpec>  <Destination>

Options:

    /is                  Copy file even if identical.
    /s                   Include subdirectories, hierarchy reproduced on device.

Arguments:

    Source_FileSpec      File specification denoting the source of the copy.
    Destination          Where files should be copied to.

For the source, wild cards or directory names may be specified, as may be single files.  The destination can be either a directory or a file name, depending on the type of source specified.

By default, an argument is assumed to live on a local file system.  To indicate that either argument denotes a location on a device connected via ActiveSync, prepend 'dev:' to that argument.   To articulate that a local file system is referenced, prepend 'desk:' to the argument.

Examples:
"cecopy readme.txt dev:\readme.txt" copies this readme to the device's root.
"cecopy /s *.* dev:\" copies all files and subfolders of current directory to device's root.  Generates new folders on device as needed.
"cecopy /s *.dll dev:\windows" copies all dlls and dlls in subfolders of current directory to the device's root.  Generates new folders on device as needed.
于 2013-07-12T16:30:57.897 に答える
1

トータルコマンダーはデバイスを認識し、デバイスを介してファイルを転送したり、プログラムで使用したりできます

于 2013-07-18T22:28:32.733 に答える