Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

検索パスの区切り文字がWindowsのドライブと競合する #2

Open
faithandbrave opened this issue May 16, 2016 · 0 comments

Comments

@faithandbrave
Copy link

sample/sample.pyにおいて、デフォルトの検索パスに以下のような設定が行われています。

os.environ.setdefault('SSC_SEARCH_PATH',
                          os.path.join(os.getcwd()))

これによって、カレントディレクトリが検索パスになりますが、その際、Windowsでは「C:\current_dir」のようなパス名になります。

一方、utils.pyの中ではこの環境変数を文字':'でsplitしているため、[C, current_dir]のように検索パスが壊れてしまいます。
それによって、それらのパスにos.listdirを適用してディレクトリのファイル一覧をとってくるところで以下のようなエラーが出力され、プログラムが異常終了します。

WindowsError: [Error 3] 指定されたパスが見つかりません。: u'C\\*.*'

この問題を解決するには、以下の選択肢が考えられます:

  1. 検索パスをsplitしない
  2. 検索パスの区切り文字をコロンではなくセミコロンにする
  3. Windowsはサポート対象外とする

方針として1. もしくは2. が採用されるのであれば、私の方で修正し、pull requestを提出しようと思います。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant