Hi guys,

I just got a headache trying to work with some files with .wlc extesions. I would like to know which applications open such files and how can i access the content.

URGENT PLEASE.

Recommended Answers

All 2 Replies

what's a wlc file? Is it power word?

If yes: It's just a textfile, so open it like this:

#include <iostream>
#include <string>
#include <fstream>

int main()
{
    std::ifstream in;
    std::string line;
    in.open("c:\\input.txt");
    // check if file is open here
    // and do something with it's contents 
    return 0;
}

ps.
"urgent"
"caps"

commented: Excellent, everything they need to know and more. +20

It seems WLC is a proprietary file format. Buy WISCO Computing Word Power and enjoy...

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.