changing the name of the excel file using ActXserver

3 ビュー (過去 30 日間)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan 2015 年 5 月 21 日
How can I change the name of the excel file using Actxserver?
for example science.xls to maths.xls
Is it possible??
Is there some other way to do it?
Thanks you
  1 件のコメント
Guillaume
Guillaume 2015 年 5 月 21 日
編集済み: Guillaume 2015 年 5 月 21 日
Note that actxserver is just a way of interfacing with COM interfaces. There are many such COM interfaces. For example you could interact with the COM interface of Scripting.FileSystemObject and do the rename this way in a very roundabout way.
You probably meant to ask how to rename an excel file using Excel COM interface (invoked through actxserver('Excel.Application')). This is not possible this way, since it's not possible in excel. The best you can do is save the file with a different name.
</end pedantic mode>

サインインしてコメントする。

採用された回答

Guillaume
Guillaume 2015 年 5 月 21 日
The fact the file is an excel file is pretty much irrelevant. You just want to rename a file, which is achieved by movefile regardless of the type of the file.
movefile('science.xls', 'math.xls')
Of course, the file must not be opened for the rename to succeed.

その他の回答 (1 件)

Thomas Koelen
Thomas Koelen 2015 年 5 月 21 日
You could read the file with
xlsread
then save it with the name you want with
xlswrite
  1 件のコメント
Guillaume
Guillaume 2015 年 5 月 21 日
That's a very roundabout and slow way to rename a file!

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeUse COM Objects in MATLAB についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by