フォルダを開くときにサイズや位置を指定する方法はありますか

ファイルのドラッグ&ドロップを行いたいのですが、フォルダを開く際に場所とフォルダウィンドウの表示サイズを指定できないかと思い質問させていただきました
ご存じでしたらお知らせください

HI @Count_Zero

Welcome to UiPath community

Check out the tutorial

Regards
Gokul

Thank you Gokul001

But I want to know that how to specify the view size of folder when I open the folders.
Do you know about it ?

Hi @Count_Zero

Can you elaborate what you mean on view size?

Are you trying to do ui automation on folder?
or you want to limit how many folders can be retrieved ?

if you want to retrieve the folders under a main folder then you can use Directory.GetDirctories() this will give you all folders under the main folder

cheers

Thank you Anil_G

View size means Window Size, not capacity and number of files/folders.
I’m so sorry, I’m not good at in English
So, I cannot tell you what I want to do well

Hi @Count_Zero

No Problem . Happy to share you information that you need. You can try this activity from market place

cheers

こんにちは

対象のウインドウに対して、
UiPath.Core.Window.Move メソッドで可能です。

シーケンス.xaml (6.0 KB)

上記サンプルにて、実際に操作したいWindowを指定して試してみてください。

Yoichiさん

ご連絡が遅れて申し訳ありません
お送りいただいたサンプル流用させていただきます
これって、表示する位置も指定できたりしますか?
Moveって入っているのでできるかと思ってます
また、これの流用でブラウザ画面の位置や大きさを指定できるのでしょうか?

お礼以上に質問ばかりになってしまって申し訳ありませんが、よろしくお願いします

Thank you Anil_G

I’ll try to the activity what you suggest me.

Thank you

1 Like

こんにちは

以下の通り4つの引数がそれぞれ、X,Y,width,heightに対応していますので
前者2つが位置、後者2つがサイズをそれぞれコントロールできます。
(実際には上記の通りInvokeMethodアクティビティを使ってください)

image