printf重新導向輸出到檔案

來源:互聯網
上載者:User

測試環境:Microsoft Visual C++ 6.0,Win32 Application或Win32 Console Application均可。

 

#include "stdafx.h"<br />#include <stdio.h><br />int APIENTRY WinMain(HINSTANCE hInstance,<br /> HINSTANCE hPrevInstance,<br /> LPSTR lpCmdLine,<br /> int nCmdShow)<br />{<br /> // TODO: Place code here.<br />printf("Redirected to a file. /n");<br />return 0;<br />}<br />

 

如上代碼(編譯產生1.exe),在預設的情況下,printf的資訊是列印在螢幕上的。如何才能將資訊直接寫入檔案呢?用dos命令“>filename”和“>>filename”作為1.exe的參數運行即可。如:

 

1.exe >ab.txt        // 檔案覆蓋

1.exe >>ab.txt      // 檔案追加

 

如此你就可以在1.exe檔案的同一目錄下看到ab.txt檔案了,檔案內容正是printf的資訊。

 

當然你也可以在Microsoft Visual C++ 6.0的setting中直接輸入運行參數>ab.txt,來運行exe,如:

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.